Is there any method to specifically point few operating points in 3D surf ?

조회 수: 1 (최근 30일)
rahul
rahul 2024년 2월 14일
답변: Voss 2024년 2월 14일
My Z axis is the output where I need waveform interpolation with operating points.

답변 (1개)

Voss
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)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by