how to prevent matlab to rounding numbers during excel read
Ältere Kommentare anzeigen
I am reading this value 702438.0482 from excel but Matlab reading it as 7.0247e+05. How can I get original value i.e. 702438.482
1 Kommentar
@Surendra Sharma: do not confuse the value that is stored in memory and the value that is displayed in the command window. These are two quite different things.
Antworten (1)
John D'Errico
am 3 Jul. 2017
MATLAB did NOT round the number. You misunderstand the difference between how MATLAB displays a number, and what is stored.
help format
My preference is usually short g, because I don't want to see long strings of digits. But in order to see the full details
format long g
is usually best.
Kategorien
Mehr zu Spreadsheets finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!