Is there any method to specifically point few operating points in 3D surf ?
4 ビュー (過去 30 日間)
古いコメントを表示
My Z axis is the output where I need waveform interpolation with operating points.
0 件のコメント
回答 (1 件)
Voss
2024 年 2 月 14 日
Maybe this is helpful:
% make a surface using surf()
N = 10;
X = 1:N;
Y = 1:N;
Z = peaks(N);
surf(X,Y,Z)
% pick some points to highlight
idx = Z > 2;
% plot those points using plot3()
hold on
[r,c] = find(idx);
plot3(X(c),Y(r),Z(idx),'.r','MarkerSize',12)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!