Why does only one plot show up at once?

167 views (last 30 days)
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.

Accepted Answer

Star Strider
Star Strider on 4 Dec 2014
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 Comment
Fariha Tabassum
Fariha Tabassum on 11 Apr 2020
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?

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!