How to plot multiple lines in a graph?
4,062 ビュー (過去 30 日間)
表示 古いコメント
I have a matrix with several 5 layers. I want to plot the numbers at a specific gridpoint for layers 2,3, and 4. How would I go about doing this?
Thanks for the help!
1 件のコメント
Stephen23
2016 年 6 月 25 日
@zephyr21: please upload your code here on this forum by editing your question and clicking the paperclip button. Make sure to include any data that is required to run the code.
回答 (2 件)
Muhammad Usman Saleem
2016 年 6 月 24 日
x1=[2 3 4 5];
y1=[9 4 3 2];
x2=[11 20 30 50 ];
y2= [ 20 30 50 60];
plot(x1,y1)
hold on
plot(x2,y2)
hold off
This plot two line graphs on same plot
0 件のコメント
MathWorks Support Team
2019 年 5 月 22 日
Please see the following post, which has a good accepted answer to a similar question:
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!