Large integers saved as csv files are rounded up
Show older comments
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.
Accepted Answer
More Answers (0)
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!