使用MATLAB中的句柄调用dateaxis函数

时间:2015-08-07 14:40:57

标签: matlab plot matlab-guide axes

如您所知,我们可以使用MATLAB句柄调用不同的绘图函数,如:

plot(handles.axes,data);
hold(handles.axes,'on')
plot(handles.axes,ab2,data2,':r');
title(handles.axes','my title');
legend(handles.axes,'mm','ab','Location','Best');
grid on;
ylabel(handles.axes,'y label);

我们如何使用句柄调用dateaxis函数?我想将我的x轴值转换为日期。 dateaxis(handles.axes,12)没有用。

1 个答案:

答案 0 :(得分:1)

您可能希望使用datetick,这允许您以与plot相同的方式指定要应用更改的轴:

datetick(axes_handle,...)