필터 지우기
필터 지우기

How to plot grey contour lines?

조회 수: 4 (최근 30일)
Mohammed
Mohammed 2014년 3월 23일
댓글: Mohammed 2014년 3월 23일
Hi,
I have the following code and I am trying to add a GRAY color contour line but I can't?!! Any suggestions or ideas?!
  • Hint:*I don't want to remove 'shading flat'.
F = scatteredInterpolant(Lon,Lat,EcIo,'natural','linear');
xlimit = linspace(min(Lon),max(Lon));
ylimit = linspace(min(Lat),max(Lat));
[Xq Yq] = meshgrid(xlimit,ylimit);
Vq = F(Xq,Yq);
contourf(Xq,Yq,Vq)
shading flat
colorbar('location','EastOutside')
xlabel('Longtitude','FontWeight','Bold')
ylabel('Latitude','FontWeight','Bold')

답변 (1개)

Walter Roberson
Walter Roberson 2014년 3월 23일
contourf() produces a patch() object, and the "lines" are the boundaries of faces. The appropriate control is therefore to set the EdgeColor of the patch object.
Fpatch = contourf(Xq, Yq, Vq);
set( findobj(Fpatch, '-type', 'patch'), 'EdgeColor', [128 128 128]);
the findobj() is there in case there is an hggroup wrapped around the patch (which I seem to recall there is.)
  댓글 수: 1
Mohammed
Mohammed 2014년 3월 23일
Thanks! I've just run the m-file again but gives me an error like below;
Error using findobj
Invalid handle
besides the line color is not gray, it is black. I want it like a picture below and smooth if possible
.

댓글을 달려면 로그인하십시오.

카테고리

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