Effacer les filtres
Effacer les filtres

How to increase number of lines in contour plots?

35 vues (au cours des 30 derniers jours)
Supreeth
Supreeth le 7 Mar 2013
Modifié(e) : Tom McLeay le 6 Août 2015
Hi. I am trying to use 'ezcontour'. I want to know how to increase number of lines that appear in these contour plots. Thanks.

Réponses (2)

nanren888
nanren888 le 7 Mar 2013
help contour?
... contour(Z, N) and contour(X, Y, Z, N) draw N contour lines, ...
... contour(Z, V) and contour(X, Y, Z, V) draw LENGTH(V) contour lines at the values specified in vector V. ...
Did I miss your point?

Tom McLeay
Tom McLeay le 6 Août 2015
Modifié(e) : Tom McLeay le 6 Août 2015
THe 'N' parameter does not apply to ezcontour, only contour.
Use the Level Step parameter, e.g.:
>> h=ezcontour(@(x,y)pdf(obj,[x y]),[-3 5],[-4 5],100);
>> h.LevelStep=0.01;
It is also convenient to use a custom list, such as:
>> h.LevelList=[0.001 linspace(0,0.12,20)];

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by