Two y axes in subplot

59 ビュー (過去 30 日間)
Milan Matah
Milan Matah 2012 年 11 月 16 日
コメント済み: Nachiket Wadwankar 2018 年 10 月 19 日
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

採用された回答

Matt Fig
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 件のコメント
Milan Matah
Milan Matah 2012 年 11 月 16 日
There is alway a simple solution in matlab... Now I know the one for this issue. Thanx
rfigueiredo
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
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 件のコメント
Nachiket Wadwankar
Nachiket Wadwankar 2018 年 10 月 19 日
Thanks for this solution. This is exactly what I was looking for.

サインインしてコメントする。


Ghulam Murtaza
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

カテゴリ

Help Center および File ExchangeTwo y-axis についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by