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

8 views (last 30 days)
My Z axis is the output where I need waveform interpolation with operating points.

Answers (1)

Voss
Voss on 14 Feb 2024
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)

Categories

Find more on Modeling in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!