如何在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)