开发者

MATLAB offset surface

开发者 https://www.devze.com 2023-01-31 20:59 出处:网络
I want 开发者_开发知识库to offset surfaces which have grid points. I have some grid points for my goemetrical problem I can plot it with matlab but I can not offset surfaces.

I want 开发者_开发知识库to offset surfaces which have grid points. I have some grid points for my goemetrical problem I can plot it with matlab but I can not offset surfaces.

Thanks for your interest

Aliis


I don't fully understand your question, but if you want arbitrary 3D plots not on the grid, you can try delaunay and trisurf.

N = 300;
X = randn(N,1);
Y = randn(N,1);
Z = sin(X+Y.^2);
tri = delaunay(X,Y);
trisurf(tri,X,Y,Z);
0

精彩评论

暂无评论...
验证码 换一张
取 消