How to increase number of lines in contour plots?
34 次查看(过去 30 天)
显示 更早的评论
Hi. I am trying to use 'ezcontour'. I want to know how to increase number of lines that appear in these contour plots. Thanks.
0 个评论
回答(2 个)
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?
0 个评论
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)];
also refer to http://uk.mathworks.com/help/matlab/ref/contour-properties.html#zmw57dd0e125000 for more options
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Contour Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!