Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在生成数字,但找不到更改 ylabel 对齐方式以使其沿 y 轴的方法。
plot(tvals(:,1:dim), Values(:,1:dim)) title(Title) xlabel(Xlabel) ylabel(Ylabel')
只是不要转置Ylabel:
Ylabel
ylabel(Ylabel)
比较两行的输出
disp(Ylabel) disp(Ylabel')
看看有什么不同
我想你可能想旋转ylabel:
ylabel('something','rotation',90)