Azzera filtri
Azzera filtri

Deciphering an Error message

2 visualizzazioni (ultimi 30 giorni)
Brooke
Brooke il 2 Apr 2012
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.

Risposta accettata

Walter Roberson
Walter Roberson il 2 Apr 2012
Brooke, for some values of n, there would be no data below the choosen n, and so there would be no contour line drawn. The handle returned, h, would be empty. Feeding an empty handle to clabel causes the message you see.

Più risposte (1)

Sean de Wolski
Sean de Wolski il 2 Apr 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 Commenti
Sean de Wolski
Sean de Wolski il 2 Apr 2012
What are you entering for n?
Brooke
Brooke il 2 Apr 2012
It works when I enter say 1, 0.2, 0,5 etc but stops working when I entered anything greater than 3 (or maybe some tighter bound)...

Accedi per commentare.

Categorie

Scopri di più su Contour Plots in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by