How to display graph with values on the left side and values on the right side
15 ビュー (過去 30 日間)
古いコメントを表示
I need to display this kind of graph with values of wolves on the left side, and values of elks on the left side. Any help will be appreciated, sorry for my english.
0 件のコメント
採用された回答
the cyclist
2016 年 6 月 15 日
編集済み: the cyclist
2016 年 6 月 15 日
2 件のコメント
the cyclist
2016 年 6 月 15 日
編集済み: the cyclist
2016 年 6 月 15 日
I don't understand what you are asking for here. Here is an example from the documentation. Maybe you can figure out how to plot your own data, using this example.
x = linspace(0,10); y = sin(3*x); yyaxis left plot(x,y)
z = sin(3*x).*exp(0.5*x); yyaxis right plot(x,z) ylim([-150 150])
その他の回答 (1 件)
Neel Shah
2019 年 11 月 1 日
how do i write on both side of the graph
like on left and right side of the graph
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Two y-axis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!