How to give axis labels in plotyy comand while it is used in subplot(2.1.1)...........
Show older comments
How to give axis labels in plotyy comand while it is used in subplot(2.1.1)...........
Answers (1)
x = 1:5;
y1 = 1:5;
y2 = 5:-1:1;
figure
subplot(2,1,1)
[ax h1 h2]=plotyy(x,y1,x,y2);
set(get(ax(1),'Ylabel'),'String','this is Y axis 1!!!');
set(get(ax(2),'Ylabel'),'String','this is Y axis 2!!!');
1 Comment
Chris Martin
on 27 May 2014
Categories
Find more on Two y-axis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!