Problem reading my results

3 visualizzazioni (ultimi 30 giorni)
Panty
Panty il 11 Set 2014
Commentato: Star Strider il 11 Set 2014
Dear friends
I got the below results but I dont know how to read the (E-..) parts
7.41E-08 4.20E-06 2.34E-05 2.36E-06 9.54E-06 2.62E-05 8.15E-05 0.000118559
1.53E-06 3.95E-06 2.21E-05 2.71E-06 1.01E-05 2.84E-05 8.69E-05 0.000125772
1.47E-06 4.01E-06 2.24E-05 2.73E-06 1.02E-05 2.86E-05 8.77E-05 0.000127014
1.44E-06 4.06E-06 2.27E-05 2.76E-06 1.03E-05 2.89E-05 8.86E-05 0.000128348
How can I read these numbers without the E-.. parts??
Many thanks
  2 Commenti
Oleg Komarov
Oleg Komarov il 11 Set 2014
Do you have that data in a text file? What`ve you tried so far?
Panty
Panty il 11 Set 2014
I was computing the sum of columns of some double arrays and then divide these sums with a number...And Matlab gave these results..

Accedi per commentare.

Risposta accettata

Star Strider
Star Strider il 11 Set 2014
What you got is likely the output of an fprintf call, because MATLAB defaults to a lower-case ‘e’ for exponential notation. You would have to go into the code that you used, and change the format descriptors in that call.
If you are wondering what the E- parts mean, 7.41E-8 translates to 7.41 x 10^-8, or 0.0000000741.
  2 Commenti
Panty
Panty il 11 Set 2014
Thats fine guys...thank you very much..!!!
Star Strider
Star Strider il 11 Set 2014
My pleasure!

Accedi per commentare.

Più risposte (1)

Andy L
Andy L il 11 Set 2014
Try
format long
in your code. MATLAB should recognise that these are just the short form of these numbers.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by