How to use precision only when needed with dlmwrite ?
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Benjamin Lemmer
il 14 Feb 2019
Modificato: Stephen23
il 17 Feb 2019
I am having the problem that I want to save some data to a csv file.
The data I have in Matlab is something like this:
20190212114854371;517585652892199;20190212114852000;-2.3511062;4.999093;5.3438582;0.28869548;0.16085984;-0.57739097;52.27151;10.533472
You see, it is mixed int and float values. I want to store them exactly like this. However when I use dlmwrite without precision I end up with data like this:
2.019e+16;1.8509e+14;2.019e+16;-1.6664;6.3925;7.3933;0.0042612;0;0.0042612;52.274;10.527;0
which is not enough or it adds a lot of zeros, which slows down the writing process, if i use the needed precision:
20190211112837504.00000000;221480220621999.00000000;20190211112835000.00000000;-0.69032930;5.75713100;7.90648400;0.15009704;0.01083470;0.10411896;52.26511800;10.53640600;0.00000000
Is there a way to tell dlmwrite to onyl use precision if needed or is there another option to write csv data with precision ?
(Please do not be confused: I picked up different lines from the output.)
2 Commenti
Stephen23
il 16 Feb 2019
Modificato: Stephen23
il 17 Feb 2019
These data look much like timestamps 20190212114854371 20190212114852000. Of course dates/times should not be combined into one decimal integer (doing so is a total misrepresentation of the bases involved with dates and times). Dates and times should be stored in a datetime variable (or even a string/char variable), which would make it clearer how to then save it properly.
Risposta accettata
Walter Roberson
il 14 Feb 2019
No. dlmwrite only accepts one precision argument . That argument must be an integer (which is used as number of decimal places) or it must be ann fprintf format item describing aa single output value . It is valid to pass something like '%.12g' but there is no way to pass something conditional that says to use different format descriptions depending upon the value to be output (or the column number)
Furthermore inside matlab the values are not what you claim they are . There is no way to represent 0.1 exactly on floating point , only integer multiples of 2^(-N) for some integer N. Every one of the values you show with a decimal point has additional digits that you have not shown and matlab has no way of knowing whether those are wanted digits or not .
4 Commenti
Stephen23
il 17 Feb 2019
Modificato: Stephen23
il 17 Feb 2019
@Benjamin Lemmer: write your own file-writing function based on fopen, fprintf, and fclose.
If you import the timestamps as character than you avoid any loss of their data, and can easily print these to the output file directly using the %s format operator.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Type Conversion in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!