1

我有一个名为 datevector 的矩阵,其中包含我想要绘制的时间序列的年、月、日、小时、分钟、秒。

datevector = [...
2009    11  4   11  35  0
2009    11  4   11  36  0
2009    11  4   11  37  0
2009    11  4   11  38  0
2009    11  4   11  39  0
2009    11  4   11  40  0]

为了绘制关于这个时间序列的数据,我创建了包含时间序列的数组

xdate = datenum(datevector);

然后我尝试绘制我的data = [1 2 3 4 5 6]

figure
plot(xdate',data)
datetick('x','yyyy-mm-dd HH:MM:SS')

...好吧,我得到的数字不是预期的...我想像 datavector 一样有一个分钟的分辨率...你能帮我吗?

谢谢!

4

0 回答 0