在 matlab 中,我使用 accumarray() 创建了一个包含 3 列整数的新向量。第 1 列:日期(只是日期);第2栏:小时;第 3 列:样本值。
19.0000 9.0000 25.6937
19.0000 10.0000 30.2616
19.0000 11.0000 32.2840
19.0000 12.0000 28.4867
19.0000 14.0000 35.4055
19.0000 16.0000 48.3377
现在我绘制图表的代码涉及以下内容;
xdate = datenum(year,month,day,hourVector,minutes,seconds);
plot(xdate,sampleValue,'-x','MarkerSize',10)
datetick('x','ddd HHPM')
我很难找到一种方法,其中 x 轴每小时(或 2 小时)标记一次。谢谢