How to remove contour line in filled contour plot?
Mostrar comentarios más antiguos
Hi all,
I am plotting a data using contourf but the there is a contour line between the start and end value color even after using the
contourf(x,y,z,'LineStyle','none','linecolor','none')
%or
contourf(x,y,z,'LineStyle','none')
%or
contourf(x,y,z,'linecolor','none')
For example in the attached figure there is a line between dark blue and dark red.
Also, I have tried different colormap but the result is same.

Respuesta aceptada
Más respuestas (1)
KSSV
el 31 de Ag. de 2021
Try:
pcolor(x,y,z) ;
colorbar ;
shading interp ;
1 comentario
UTKARSH VERMA
el 31 de Ag. de 2021
Categorías
Más información sobre Contour Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





