plotyy legend for multiple lines ( R2012a)
显示 更早的评论
Hello ,
I am trying to plot a legend for multiple graphs in the plotyy mode. I have seen solutions like this:
legend([H1;H2],'Susceptibles','Infected','Concentration');
But how can i do it for every single line h(3)-h(9) ?
Thanks a lot
% Bed profile and velocities
subplot(2,1,1)
[ax,h1,h2]=plotyy(x6,y6,x1,y1)
h(3) = line(x7,y7, 'Parent', ax(1));
h(4) = line(x8,y8, 'Parent', ax(1));
h(5) = line(x9,y9, 'Parent', ax(1));
h(6) = line(x18,y18, 'Parent', ax(2));
h(7) = line(x19,y19, 'Parent', ax(2));
h(8) = line(x20,y20, 'Parent', ax(2));
h(9) = line(x21,y21, 'Parent', ax(2));
set(ax(1),'ytick',linspace(min(y6),max(y6),8));
set(ax(2),'ytick',linspace(min(y1),max(y1),3));
ylim(ax(1),([0 2.5]))
ylim(ax(2),([0 0.35]))
ylabel(ax(1),'u [m/s]')
xlabel('x [m]');
ylabel(ax(2),'y [m]')
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Two y-axis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!