How to plot surface with contour form vertices?

조회 수: 3 (최근 30일)
Teerapong Poltue
Teerapong Poltue 2021년 7월 9일
편집: Teerapong Poltue 2021년 7월 11일
I got the vertices for my 3D surface and its value that need to be contoured.
I wonder how to do a surface plot with contour?
I found a simple way to do it with a scatter plot, but I don't know how to implement the code to be surface.
x = data(:,1);
y = data(:,2);
z = data(:,3);
d = data(:,4);
marker_size = 10;
scatter3(x,y,z,marker_size,d,'filled');
view(3)
daspect([1 1 1])
colorbar
axis tight
camlight
lighting gouraud

채택된 답변

LO
LO 2021년 7월 9일
try this
https://de.mathworks.com/matlabcentral/fileexchange/5105-making-surface-plots-from-scatter-data
  댓글 수: 2
Teerapong Poltue
Teerapong Poltue 2021년 7월 10일
Unfortunately, it didn't work in this case since there are multiple z value in single x and y coordinate.
LO
LO 2021년 7월 10일
try to combine this
with this
Or see also this answer by KSSV
%%structured
xi = unique(x) ; yi = unique(y) ;
[X,Y] = meshgrid(xi,yi) ;
Z = reshape(z,size(X)) ;
figure
surf(X,Y,Z)
%%unstructured
dt = delaunayTriangulation(x,y) ;
tri = dt.ConnectivityList ;
figure
trisurf(tri,x,y,z)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by