contour Subscripted assignment dimension mismatch
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
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 comentarios
Walter Roberson
el 15 de Ag. de 2016
What is frequency? Should it be nfrequencies ?
Image Analyst
el 16 de Ag. de 2016
And should 0.5:0,5:8.5; be really 0.5:0.5:8.5;???
Jacco vD
el 16 de Ag. de 2016
Walter Roberson
el 16 de Ag. de 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
el 18 de Ag. de 2016
Respuestas (0)
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!