how do i make this contour plot more presentable

1 vue (au cours des 30 derniers jours)
Vidhyashankar V
Vidhyashankar V le 23 Sep 2020
Hi , How can i make this contourf plot more presentable ?
  1 commentaire
Walter Roberson
Walter Roberson le 23 Sep 2020
Use fewer levels perhaps? You can pass the list of level values as the last parameter.

Connectez-vous pour commenter.

Réponse acceptée

Bjorn Gustavsson
Bjorn Gustavsson le 23 Sep 2020
The crossing contours confuse/worry me, are you adding additional contours from another data-set ontop of your contourf-plot?
Perhaps you can get a cleaner presentation by combining pcolor and contour, something like this:
pcolor(x,y,data),shading flat
hold on
contour(x,y,data,12,'k')
contour(x2,y2,data2,10,'m') % If you want additional contour-plots ontop of the first
HTH

Plus de réponses (0)

Catégories

En savoir plus sur Contour Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by