Deciphering an Error message
Afficher commentaires plus anciens
What does the following error message mean?
??? Index exceeds matrix dimensions.
Error in ==> clabel>inline_labels at 172
if strcmp(get(h(1), 'Type'), 'patch') && ~strcmp(get(h(1), 'FaceColor'),
'none')
Error in ==> clabel at 111
h = inline_labels(cax, cs, varargin{:});
Thank you.
Réponse acceptée
Plus de réponses (1)
Sean de Wolski
le 2 Avr 2012
x = rand(2,2)
x is now a 2x2 matrix.
If I try to get x(3,3):
x(3,3)
I'll get that error because x(3,3) doesn't exist since it's 2x2
3 commentaires
Brooke
le 2 Avr 2012
Sean de Wolski
le 2 Avr 2012
What are you entering for n?
Brooke
le 2 Avr 2012
Catégories
En savoir plus sur Numerical Integration and Differentiation dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!