How to remove contour line in filled contour plot?
Ältere Kommentare anzeigen
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.

Akzeptierte Antwort
Weitere Antworten (1)
KSSV
am 31 Aug. 2021
Try:
pcolor(x,y,z) ;
colorbar ;
shading interp ;
Kategorien
Mehr zu Contour Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





