1

下面的代码片段仅将大字体应用于底部图,而不是顶部图。

subplot(2,1,1)
pcolor(lon(Lon2Use),-dep,v(Lon2Use,:)'); shading('flat'); colorbar
subplot(2,1,2)
pcolor(lon(Lon2Use),-dep,PressureGeo(Lon2Use,:)'); shading('flat'); colorbar
set(gca,'FontSize',20)
title('v along constant latitude line')
xlabel('longitude')
ylabel('depth')

我怎样才能为顶层情节做这件事,最好是尽可能少的额外步骤?

4

2 回答 2

2

你有几个选择。由于该函数gca始终返回具有当前焦点的轴的句柄,因此最简单的解决方案是在绘制每个绘图后重复该命令:

subplot(2,1,1)
pcolor(lon(Lon2Use),-dep,v(Lon2Use,:)');shading('flat');colorbar
set(gca,'FontSize',20)    %<----First axis has focus at this point
subplot(2,1,2)
pcolor(lon(Lon2Use),-dep,PressureGeo(Lon2Use,:)');shading('flat');colorbar
set(gca,'FontSize',20)    %<----Second axis has focus at this point

或者,如果您希望所有轴在默认情况下始终具有该字体大小,则可以在运行上述任何代码之前像这样在根对象设置默认大小:

set(0, 'DefaultAxesFontSize', 20);

您的坐标轴将自动具有该字体大小。

于 2013-05-06T14:41:17.927 回答
1

您在这里有几个选择。您可以在创建第二个轴之前重复调用,即

subplot(2,1,1)
pcolor(lon(Lon2Use),-dep,v(Lon2Use,:)');shading('flat');colorbar
set(gca,'FontSize',20)
subplot(2,1,2)
pcolor(lon(Lon2Use),-dep,PressureGeo(Lon2Use,:)');shading('flat');colorbar
set(gca,'FontSize',20)

或者,您可以存储(轴句柄)的返回值subplot并设置它们的属性,即

ax = [];

ax = [ax; subplot(2,1,1)];
pcolor(lon(Lon2Use),-dep,v(Lon2Use,:)');shading('flat');colorbar
ax = [ax; subplot(2,1,2)];
pcolor(lon(Lon2Use),-dep,PressureGeo(Lon2Use,:)');shading('flat');colorbar
set(ax,'FontSize',20);

我个人赞成后一种解决方案,因为如果您更改子图的数量,代码不会改变。

于 2013-05-06T14:40:31.777 回答