Question
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.
Related Questions
Expert Answer
John Williams
PhD Expert
Answered Aug 12, 2026
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);
Have a different question? Ask here