Large integers saved as csv files are rounded up
Ältere Kommentare anzeigen
I have a very large data set called "el_inter" where the last numbers are very large integers. In Matlab,
el_inter(end-1) = 999964
el_inter(end-2) = 999963
clearly two different numbers (equivalent to cells 301689 and 301690 in the following Excel screenshots).
However, when I save it as a csv file using
csvwrite('el_inter.csv',el_inter')
The large integers are saved with scientific notation

in Excel then I change the format to general but it rounds the number so I get

Therefore, my data set has been altered and can't be used outside of Matlab.
How do I save all the data without rounding?
I have attached the data set variable.
Akzeptierte Antwort
Weitere Antworten (0)
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!