Unpacking a 3D mesh grid
이전 댓글 표시
Hello,
I have constructed a 3D mesh using griddata function. Now i want to unpack the 3D mesh using a suitable Matlab command to get the X,Y & Z coordinates. Please suggest a suitable code for this. Thanks in advance.
댓글 수: 1
답변 (1개)
Walter Roberson
2012년 11월 1일
[X, Y, Z] = griddata(....)
XYZCoords = [X(:), Y(:), Z(:)];
카테고리
도움말 센터 및 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!