how do i make this contour plot more presentable

조회 수: 2 (최근 30일)
Vidhyashankar V
Vidhyashankar V 2020년 9월 23일
답변: Bjorn Gustavsson 2020년 9월 23일
Hi , How can i make this contourf plot more presentable ?
  댓글 수: 1
Walter Roberson
Walter Roberson 2020년 9월 23일
Use fewer levels perhaps? You can pass the list of level values as the last parameter.

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

채택된 답변

Bjorn Gustavsson
Bjorn Gustavsson 2020년 9월 23일
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

추가 답변 (0개)

카테고리

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