【发布时间】:2019-01-28 17:29:38
【问题描述】:
在几个子图中,每个子图的 y 轴刻度具有不同的值。 每个 ylabel 都有不同的对齐方式。 有没有办法解决这个问题 - 将所有 ylabels 向左对齐?
现在只能手动操作。
figure(1);
subplot 411; plot([1 2],[1 1000]); ylabel 'Label 1';
subplot 412; plot([1 2],[1 1000]); ylabel 'Label 2';
subplot 413; plot([1 2],[0.5 0.7]); ylabel 'Label 3';
subplot 414; plot([1 2],[-5 0.0007]); ylabel 'Label 4';
我希望所有的 ylabel 都向左对齐。
【问题讨论】:
标签: matlab