contour Subscripted assignment dimension mismatch
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
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 Kommentare
Walter Roberson
am 15 Aug. 2016
What is frequency? Should it be nfrequencies ?
Image Analyst
am 16 Aug. 2016
And should 0.5:0,5:8.5; be really 0.5:0.5:8.5;???
Jacco vD
am 16 Aug. 2016
Walter Roberson
am 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
am 18 Aug. 2016
Antworten (0)
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!