I have IgorTime data in which time:units = "seconds since 1904-01-01". I would like to convert this seconds to datevc.
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Vishnu Dhakad
el 17 de Jun. de 2019
Comentada: Vishnu Dhakad
el 19 de Jun. de 2019
I have attached the file (IgorTime).
Thank you
0 comentarios
Respuesta aceptada
Más respuestas (1)
Are Mjaavatten
el 17 de Jun. de 2019
First: Are you sure your T vector is in seconds? If so, your time list covers about 48 milliseconds around 01-Jan-1904 11:41:29. It makes more sense if T is in days since 1904-01-01.
Anyway, here is a way to do it:
dt = datetime(1904,1,1) + T; % Use T/24/3600 if T is really in seconds
dv = datevec(dt);
I recommend to work with datetime objects, which are very flexible. For instance, the time axis adustst automatically when you zoom in plots.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!