How to update a contourf plot?
13 ビュー (過去 30 日間)
古いコメントを表示
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
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
2018 年 12 月 12 日
Similarly
[~,hc] = contourf(Z);
hc.ZData = newZdata;
I don't see a CData property for contourf
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Purple についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!