필터 지우기
필터 지우기

How to increase number of lines in contour plots?

조회 수: 35 (최근 30일)
Supreeth
Supreeth 2013년 3월 7일
편집: Tom McLeay 2015년 8월 6일
Hi. I am trying to use 'ezcontour'. I want to know how to increase number of lines that appear in these contour plots. Thanks.

답변 (2개)

nanren888
nanren888 2013년 3월 7일
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 2015년 8월 6일
편집: Tom McLeay 2015년 8월 6일
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)];

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by