Why won't Matlab plot anything?

Illustration
Sophia - 2020-08-04T10:10:27+00:00
Question: Why won't Matlab plot anything?

When I try to plot anything, nothing comes up. There are no errors, there's just nothing.   >> x=-10:.1:10; >> y=sin(x); >> plot(x,y); No figure window pops up.

Expert Answer

Profile picture of John Williams John Williams answered . 2025-11-20

You may have previous plot open somewhere and Matlab is plotting it on the same figure. Check for open figures, you might find it.
Alternatively, Use "close all" at the beginning and try again.
 
close all
x=-10:.1:10;
y=sin(x);
plot(x,y);


Not satisfied with the answer ?? ASK NOW

Get a Free Consultation or a Sample Assignment Review!