Trouble with subplot size

7 vues (au cours des 30 derniers jours)
Jessica Eliason
Jessica Eliason le 11 Jan 2017
Commenté : Jessica Eliason le 12 Jan 2017
I've been getting an error when I try to subplot in my function, so I tried the EXACT code found in the subplot doc as an example, and still got the same error.
The error is "Index exceeds matrix dimensions"
Or, if I'm running the debugger it says "Attempted to access subplot(2,1,1); index out of bounds because size(subplot)=[1,1,1]."
Here's the example:
x= linspace(0,10)
y1=sin(x)
y2=sin(5*x)
figure
subplot(2,1,1);
plot (x,y1)
subplot(2,1,2);
plot (x,y2)

Réponse acceptée

Adam
Adam le 11 Jan 2017
Modifié(e) : Adam le 11 Jan 2017
What is the result of
which subplot
?
This is an error you would get if you have a variable of the same name as the function. Certainly if Matlab sees subplot as a function it would not be giving errors about its size - that clearly relates to a variable instead.
  1 commentaire
Jessica Eliason
Jessica Eliason le 12 Jan 2017
Thank you!! I found the variable

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by