Year conversion on figure wrong
显示 更早的评论
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?
回答(1 个)
per isakson
2019-6-29
编辑:per isakson
2019-6-29
0 个投票
That's most likely because 42931.00 is an Excel date number, not a Matlab date number.
4 个评论
Benjamin Cowen
2019-6-29
Walter Roberson
2019-6-29
datetime 'convertfrom' 'excel'
Benjamin Cowen
2019-6-29
Walter Roberson
2019-6-29
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.
类别
在 帮助中心 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!