如您所知,我们可以使用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)
没有用。