How to make sure that the horizontal axes of two figures align?
    조회 수: 8 (최근 30일)
  
       이전 댓글 표시
    
I have two figures, which I want to put side by side in my thesis. 
These two figures have different x and y labels and ticks, therefore, generally their horizontal axes are not on the same height.
That is ugly.
How to make sure the horizontal axes align? 
댓글 수: 2
  Mann Baidi
      
 2024년 6월 10일
				
      편집: Mann Baidi
      
 2024년 6월 10일
  
			Hi @min lee, it would be great if you can share a snapshot of the figures or the code executed for plotting the two figures.
답변 (2개)
  Star Strider
      
      
 2024년 6월 10일
        If the figures are open at the same time, you can use the linkaxes function.  If they are not, you can use xlim one one figure axes (likely the figure with the largest x-value limits) and then use those values on the other.  Then, use print or saveas to save the figures individually as images to use in your thesis.  
댓글 수: 0
  Michael Ladegaard
      
 2024년 6월 10일
        
      편집: Michael Ladegaard
      
 2024년 6월 10일
  
      It is often a good idea to use figure and/or axes handles. 
That way it is easy to make modifications to all axes afterwards in a for loop. 
Below is a couple of ideas, which might be helpful.
Use linkaxes to make Matlab decide the YLim or use a loop to define your own limits.
%% Make two figures and two axes
for k = 1:2
    % First create figure and axes handles
    fig(k) = figure(k);
    clf(fig(k))
    ax(k) = axes ;
    % Plot something (use handles to tell Matlab where to make the plot)
    plot(ax(k), magic(16) + 100*k ) % add some offset
    % Save YLim info for each plot 
    myYLimits(k,:) = ax(k).YLim ; % same as: fig(k).Children.YLim ;
end
% Now adjust ylimits according to minimum and maximum limits across all plots  
for k = 1:length(fig)
    ax(k).YLim = [min(myYLimits,[],"all"), max(myYLimits,[],"all")] ;
end
% Link axes so zoom changes YLim in all figures
linkaxes(ax,'y') ;
%% Alternatively plot everything in same figure (use axes handles to tell Matlab, where to plot the data)
fig3 = figure(3);
clf(fig3)
for k = 1:2
    % Make the axes
    ax(k) = subplot(1,2,k) ;
    % Plot something
    plot(ax(k), magic(16) + 100*k ) % add some offset
    % Save YLim info for each subplot 
    myYLimits(k,:) = ax(k).YLim ; % same as: fig3.Children.YLim ;
end
% Now adjust ylimits 
myYLimits = vertcat(fig3.Children.YLim) ; % get YLim from all subplots 
for k = 1:length(fig)
    fig3.Children(k).YLim = [min(myYLimits,[],"all"), max(myYLimits,[],"all")] ;
end
% Link axes so zoom changes YLim in all subplots
linkaxes(ax,'y') ;
댓글 수: 0
참고 항목
카테고리
				Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!