Why does only one plot show up at once?
9 ビュー (過去 30 日間)
古いコメントを表示
I am trying to plot a velocity and acceleration versus an angle in two separate graphs but when I have both plots in my code, only one graph shows up. If I delete one of the plot codes, the other one shows up just fine. Here is my code.


0 件のコメント
採用された回答
Star Strider
2014 年 12 月 4 日
You’re almost there. Instead of the comment ‘% Figure 1’, label them as such:
figure(1)
plot(theta1, PistonSpeed2)
... etc. ...
figure(2)
plot(theta1, PistonAcceleration)
... etc. ...
MATLAB will overplot in an existing figure window unless you tell it not to.
1 件のコメント
Fariha Tabassum
2020 年 4 月 11 日
I'm calling a built in function that has incorporated the plot command. Now what can I write in my code so that I can see that graph along with my graphs?
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!