I have surface data stored in faces and vertices. How to extract data in a slice (or 2D plane) from this Faces and vertices data?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have surface data stored in faces and vertices. How to extract data in a slice (or 2D plane) from this Faces and vertices data?
0 Kommentare
Antworten (1)
darova
am 1 Jul. 2020
Use interp2
[x,y,z] = peaks(20);
x1 = linspace(min(x(:)),max(x(:)),20);
y1 = sin(x1);
z1 = interp2(x,y,z,x1,y1);
surf(x,y,z,'facecolor','none')
line(x1,y1,z1,'linew',2)
axis vis3d
10 Kommentare
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!