contourf with no isoline
191 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Shani Gal
el 13 de Feb. de 2012
Comentada: Utility
el 20 de Jun. de 2022
Hi
How do I plot a contourf plot only with colors and no isolines?
"filled contour plot displays isolines calculated from matrix Z and fills the areas between the isolines using constant colors corresponding to the current figure's colormap"
I wish to have only the color between the isolines but no isolines..
Thanks
Shani
0 comentarios
Respuesta aceptada
Andrew Newell
el 13 de Feb. de 2012
Here is an example of how to do it:
[C,h] = contourf(peaks(20),10);
set(h,'LineColor','none')
4 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Contour Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!