我的几乎所有情节都在(水平)x轴上有'时间',所以我想知道我是否可以将标签更改为默认情况下的'时间[秒]。
我一直在调查get(groot,'factoryAxes')
属性,似乎我可以用get(groot,'defaultAxesXlabel')
更改Xlabel。但是,当我将其更改为set(groot,'defaultAxesXlabel','Time [sec]')
时,我收到错误消息:
Error using gca
While setting the 'Parent' property of Axes:
Value must be a handle.
Error in newplot (line 68)
ax = gca(fig);
这是正确的做法吗?甚至可以这样做吗?