Two y axes in subplot
조회 수: 9 (최근 30일)
이전 댓글 표시
Hi all,
I am trying to get a second y axis into an subplot.
figure
handle1 = subplot(3,3,1)
handle2 = axes('YAxisLocation','right','Color','none', ...
'XGrid','off','YGrid','off','Box','off');
This creates an additional axis object on the edge of the whole figure and not on the edge of the subplot. Setting the parent property of axes to handle1 is not possible. Calling axes(handle1) does not help. plotyy() works but has a strange behavior in a certain way. Therefore I want to use a own axis. I have not figured out what plotyy does to solve this problem.
Do you have an idea?
Thanx, Milan
댓글 수: 0
채택된 답변
Matt Fig
2012년 11월 16일
편집: Matt Fig
2012년 11월 16일
You can use SUBPLOT to set the location for your PLOTYY call.
% Data to plot.
x = 0:0.01:20;
y1 = 200*exp(-0.05*x).*sin(x);
y2 = 0.8*exp(-0.5*x).*sin(10*x);
% Let's set up our subplot by relying on SUBPLOT
figure
AX = subplot(2,1,1); % Auto-fitted to the figure.
P = get(AX,'pos'); % Get the position.
delete(AX) % Delete the subplot axes
[AX,H1,H2] = plotyy(x,y1,x,y2,'plot');
set(AX,'pos',P) % Recover the position.
댓글 수: 4
rfigueiredo
2015년 6월 5일
Hi! I was having the same problem but with this previous answer I couldn't resolve it because a blue line appears in the middle of the plot and I don't how to remove it. Another error that comes across is that the legend for the two plotted graphics is blue for both, when it should be red and blue. I think the main problem is in the appearance of the straight line in the middle of the graphic(this line seems to begin in the origin of the plot and end in the coordinate that represents the final point of both the x and y limit). Does anyone knows how to resolve this problem? Thank you in advance! Raquel
추가 답변 (2개)
Valentino
2016년 7월 14일
yyaxis(ax(1),'left')
plot(ax(1),x1,y1,'Color', Color_left)
set(ax(1),'ylim', [0,300])
set(ax(1),'YColor',Color_left);
ylabel(ax(1),('Label left '}))
yyaxis(ax(1),'right')
plot(ax(1),x2,y2,'Color', Color_right)
set(ax(1),'ylim', [-10,15])
set(ax(1),'YColor',Color_right);
ylabel(ax(1),({'Label right'}))
As yyaxis is new introduced in 2016a i figured this might help somebody.
댓글 수: 1
Ghulam Murtaza
2014년 5월 7일
Hi Matt,
I want to use two separate y axis in a subplot. However, another thing is that my plot types for both is different as well.
One is a scatter plot with first y axis and second is stairs plot with the second y axis. Could you kindly help me with that.
Thanks in advance, Ghulam
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Two y-axis에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!