plotyy two variables one with two series
古いコメントを表示
Hi All, Please is it possible to use plotyy to plot two variables, temperature and speed, but for the speed coordinate I need to plot two series u and v. If it is possible, please how to do this.
採用された回答
その他の回答 (1 件)
Azzi Abdelmalek
2013 年 10 月 27 日
Look at this example
t=0:0.1:10;
y=2*cos(t).^2
u=sin(t); % speed 1
v=cos(t) % speed 2
[ax,h1,h2]=plotyy(t,y,t,u)
line(t,v,'color',[1 1 0],'parent',ax(2));
カテゴリ
ヘルプ センター および File Exchange で Two y-axis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!