Parametrizing surface in 3 D
1 次查看(过去 30 天)
显示 更早的评论
I have vector field in 3d and the equation of the vector is x+y+z=1 it is in the sym form.
And want it to be like z=1-y-z to parametrize it.
How can I do it?
0 个评论
采纳的回答
Sulaymon Eshkabilov
2023-1-8
And write a simple code, e.g.:
[X,Y] = meshgrid(-1:0.1:1,-2:0.2:2);
Z = 1-X-Y;
[U,V,W] = surfnorm(Z);
quiver3(X,Y, Z, U,V, W);
0 个评论
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
