필터 지우기
필터 지우기

How to update a contourf plot?

조회 수: 17 (최근 30일)
Rafael Kübler
Rafael Kübler 2018년 12월 12일
댓글: Rafael Kübler 2018년 12월 13일
Hello,
i know, how to update a surface for example in a for-loop using:
set(hSurf, 'ZData', newZData)
set(hSurf, 'CData', newCData)
but how do i update a contourf plot? Here I quess i need somehow the contour matrix and the ZData.
Thank you for your help in advance.
  댓글 수: 1
dpb
dpb 2018년 12월 12일
What effect, specifically, are you after? It appears the ContourMatrix array is read-only; whether there are callbacks internal that trigger recomputation if you change the underlying data of an object I didn't explore and the documentation doesn't explicitly say...you might have to delve much deeper into the bowels depending upon just what you're trying to do.

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

채택된 답변

Cris LaPierre
Cris LaPierre 2018년 12월 12일
Similarly
[~,hc] = contourf(Z);
hc.ZData = newZdata;
I don't see a CData property for contourf
  댓글 수: 1
Rafael Kübler
Rafael Kübler 2018년 12월 13일
Yes. This works. Thanks.
Updating only ZData of the contourf is enough. The contour lines and the color change automaticly wit ZData.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by