Info
This question is closed. Reopen it to edit or answer.
contour Subscripted assignment dimension mismatch
4 views (last 30 days)
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 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
Answers (0)
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!