gpt4 book ai didi

matlab - 所有子图的一个 ylabel matlab

转载 作者:太空宇宙 更新时间:2023-11-03 19:44:53 30 4
gpt4 key购买 nike

如何在 matlab 中为多个子图设置一个“大的、单一的”ylabel?

我尝试搜索,但只发现了与“matplotlib”类似的问题,而不是与 matlab 的问题。

提前致谢。

最佳答案

这里有一些可以帮助你的东西:

MyBox = uicontrol('style','text');
set(MyBox,'String','Your YLabel')
set(MyBox,'Position',[0,0,10,10])

您可以添加其他属性来旋转它并更改背景颜色。

编辑:

好吧,我没有找到任何使用 uicontrol 进行旋转的方法。另一种选择是使用 text 命令:

%your subplot
h = axes('Position',[0 0 1 1],'Visible','off'); %add an axes on the left side of your subplots
set(gcf,'CurrentAxes',h)
text(.1,.45,'Your YLABEL',...
'VerticalAlignment','bottom',...
'HorizontalAlignment','left', 'Rotation', 90, 'FontSize',18)

关于matlab - 所有子图的一个 ylabel matlab,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18960498/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com