How to plot multiple lines in a graph?
2,079 次查看(过去 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 个评论
回答(3 个)
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 个评论
Mpilo Hlwathika
2023-6-12
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
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!