How can we plot on right Y axis?

89 次查看(过去 30 天)
kanyvt
kanyvt 2015-4-10
评论: KL 2015-4-12
Is there any way to use the right hand side of the y- axis graph to plot the curve?

采纳的回答

KL
KL 2015-4-10
You can use YAxisLocation. Check the below link.
  2 个评论
kanyvt
kanyvt 2015-4-12
Thanks for the link. But I don't really understand from it. Could you please write some syntax for the same?
KL
KL 2015-4-12
x1 = [0:.1:40];
y1 = 4.*cos(x1)./(x1+2);
x2 = [1:.2:20];
y2 = x2.^2./x2.^3;
hl1 = line(x1,y1,'Color','r');
ax1 = gca;
set(ax1,'XColor','r','YColor','r')
ax2 = axes('XAxisLocation','top',...
'YAxisLocation','right',...
'Color','none',...
'XColor','k','YColor','k');
hl2 = line(x2,y2,'Color','k','Parent',ax2);

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by