contour Subscripted assignment dimension mismatch
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
Hi,
Im trying to add isobars to a plot but i get this error. Subscripted assignment dimension mismatch. I haven't used contour before, but according to the documentation X+Y are equal to Z so i came up with this:
frequency = [7.5 15 30 60 120 240];
nfrequencies = numel(frequency)
duration = 0.5:0.5:8.5;
% for itr see attached file
[X,Y] = meshgrid(1:1:nfrequencies,duration');
contour(X,Y,itr,frequency,'ShowText','on');
[edit]
it should look something like this but this is with fake data. Don't mind the coloured lines:

the itr.mat file contains the data i wanna use for this
5 commentaires
Walter Roberson
le 15 Août 2016
What is frequency? Should it be nfrequencies ?
Image Analyst
le 16 Août 2016
And should 0.5:0,5:8.5; be really 0.5:0.5:8.5;???
Jacco vD
le 16 Août 2016
Walter Roberson
le 16 Août 2016
That is a line plot, not a contour plot.
I do not have any difficulty plotting with the data you supply. Not a lot shows up, just a single region, but it works.
Please show the complete error message you encounter, everything in red. Also please show the output of
which -all contour
Jacco vD
le 18 Août 2016
Réponses (0)
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!