Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Help with contour of a matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have to plot a bidimensional map of a matrix using 'contour', and what I obtain is plotted in figure.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/161642/image.png)
The problem is that in this way I have discrete lines, while I need to see a continuum between minimum and maximum values, with a gradual change of colors, with no blank spaces. Is it possible to do that? Maybe using a function different from 'contour'? Thanks!
0 comentarios
Respuestas (1)
Doubutsu
el 24 de Abr. de 2014
I have about the same kind of image if I try to use contour on my data. Instead I plotted it using 'imagesc'. It works good enough for me (since I just want to see something), but I don't know if it is what you are looking for.
2 comentarios
Chad Greene
el 25 de Jun. de 2014
Indeed, imagesc will flip your data vertically. So you'll need to do imagesc(flipud(yourData)). Alternatively, you could use pcolor(yourData).
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!