contour Subscripted assignment dimension mismatch
Info
This question is closed. Reopen it to edit or answer.
Show older comments
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 Comments
Walter Roberson
on 15 Aug 2016
What is frequency? Should it be nfrequencies ?
Image Analyst
on 16 Aug 2016
And should 0.5:0,5:8.5; be really 0.5:0.5:8.5;???
Jacco vD
on 16 Aug 2016
Walter Roberson
on 16 Aug 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
on 18 Aug 2016
Answers (0)
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!