フィルターのクリア

Help with choice of contour intervals in surfc

1 回表示 (過去 30 日間)
Brantosaurus
Brantosaurus 2022 年 10 月 10 日
回答済み: Star Strider 2022 年 10 月 10 日
Is it possible to define a non-default contour plot interval in surfc like it is easily achieved in the contour-based range of plots?
For example how might i plot contours over z-intervals [-7:1:8] in the following:
Z = peaks(X,Y);
surfc(X,Y,Z)
colorbar

採用された回答

Star Strider
Star Strider 2022 年 10 月 10 日
The second object in surfc is the countour plot, so address it and set the 'LevelList' property —
[X,Y,Z] = peaks(50);
figure
hsc = surfc(X,Y,Z)
hsc =
2×1 graphics array: Surface Contour
colormap(turbo(50))
colorbar
hsc(2).LevelList = -7:8;
.

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by