我正在尝试在图形的底部和顶部绘制具有两个X轴的Matlab(R2017a)图形(填充轮廓+颜色条),其比例相同,但刻度线和标签不同。按照找到的here和here的建议,我已经实现了,但是当我尝试手动调整图形窗口的大小或打印它时,请设置与默认比例不同的某些比例,例如:
set(gcf,'PaperUnits','centimeters','PaperPosition',[0 0 30 15])
print(gcf,'-dpng',path,'-r300')
新轴移位:
我用Matlab的 peaks 示例数据重现了我的问题:
contourf(peaks)
ax1=gca;
colorbar
set(ax1,'box','off','color','none') % get rid of the box in order not to have duplicated tick marks
ax1_pos = ax1.Position; % position of first axes
ax2 = axes('Position',ax1_pos,... % set the new pair of axes
'XAxisLocation','top',...
'YAxisLocation','Right',...
'Color','none');
set(ax2, 'XLim', get(ax1, 'XLim'), 'YLim', get(ax1, 'YLim')); % set same limits as for ax1
set(ax2, 'XTick', 0:14:42, 'XTickLabels', {'a','a','a','a'},... % set new tick marks and labels for the top X axis.
'YTick', get(ax1, 'YTick'), 'YTickLabels', []);
很有意思的是,如果我删除colobar命令并仅绘制填充的轮廓,则图形的行为正确:
有人知道为什么会这样吗(怎么解决)?我也愿意通过其他方式来实现X轴上的两个图。
答案 0 :(得分:4)
您的问题是一个轴上有一个颜色条,而另一个轴上没有,即使您在两个轴上都添加了一个颜色条,也会发生很多自动事情,它们会以不同的方式调整轴的大小。
但是,我们可以添加一个事件侦听器并定义一个函数来使两个轴相同。侦听器将确保捕获到事件(调整大小)并调用我们定义的函数。这是我为此编写的代码:
%% this creates the listener for change of size in the figure
f = figure('SizeChangedFcn',@(src,evn) fixaxis(src));
%% this is your code
contourf(peaks)
ax1=gca;
colorbar
set(ax1,'box','off','color','none') % get rid of the box in order not to have duplicated tick marks
ax1_pos = ax1.Position; % position of first axes
ax2 = axes('Position',ax1_pos,... % set the new pair of axes
'XAxisLocation','top',...
'YAxisLocation','Right',...
'Color','none');
set(ax2, 'XLim', get(ax1, 'XLim'), 'YLim', get(ax1, 'YLim')); % set same limits as for ax1
set(ax2, 'XTick', 0:14:42, 'XTickLabels', {'a','a','a','a'},... % set new tick marks and labels for the top X axis.
'YTick', get(ax1, 'YTick'), 'YTickLabels', []);
%% this will resize the axis if 2 of them exist
function fixaxis(src)
ax=findall(src,'Type','Axes');
if length(ax)==2
ax(2).Position=ax(1).Position;
end
end
答案 1 :(得分:0)