I have to import time data from *.csv
file to MATLAB. The time format is hh:mm:ss,fff
(ggerman version hence comma). upon importing, MATLAB converts the time stamps to number values.
Example : Time 11:38:40,702
is converted to 0.4852
.
Since I have a large set of values, I need more number of decimal units (e.g. 0.485193310185) so that I can plot a more accurate graph.
P.S. I already tried format long g
.