Plot bar with 2 different axis
古いコメントを表示
Hello, I am new to Matlab.. I wanna to plot bar with 2 different y axis... I do not understand much functions, so can any one help me
4 件のコメント
KALYAN ACHARJYA
2018 年 9 月 11 日
編集済み: KALYAN ACHARJYA
2018 年 9 月 11 日
Which version Matlab you are using?
Ali Tawfik
2018 年 9 月 11 日
Ali Tawfik
2018 年 9 月 11 日
KALYAN ACHARJYA
2018 年 9 月 11 日
編集済み: KALYAN ACHARJYA
2018 年 9 月 11 日
If somehow I can help you, it would be great for me. I am using quite older version of Matlab, yyaxis was introduced in 2016a,have you tried as following, I have not tested it.
x=linspace(0,20);
y1=sin(x);
yyaxis left
bar(x,y)
y2=sin(2*x).*exp(0.5*x);
yyaxis right
bar(x,z)
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
