Year conversion on figure wrong
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
If I read in a date, say 7/15/2017, but I read it in as 42931.00, when in MATLAB when I do this:
datetick('x', 'yyyy');
I get the year as 0117 instead of 2017?
0 comentarios
Respuestas (1)
per isakson
el 29 de Jun. de 2019
Editada: per isakson
el 29 de Jun. de 2019
That's most likely because 42931.00 is an Excel date number, not a Matlab date number.
4 comentarios
Walter Roberson
el 29 de Jun. de 2019
date is a function that returns a single character vector, that datetime then converts into a single datetime object. If you plot with that as your only data point then MATLAB invents start and end times.
Ver también
Categorías
Más información sobre Dates and Time en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!