how to obtain minimal surface of given coordinates?

2 次查看(过去 30 天)
patch = ([0,50,50,0],[0,0,50,50],[50,10,50,10])

回答(2 个)

Cedric
Cedric 2017-10-10
Minimal in what sense?
fill3( [0,50,50,0], [0,0,50,50], [50,10,50,10], 'y' ) ;
grid on ;
  2 个评论
Seemab Khan
Seemab Khan 2017-10-18
Thanks a lot. minimal surface mean optimal surface, surface whose each point is in equilibrium.

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2017-10-11
Perhaps,
x = [0,50,50,0]; y = [0,0,50,50]; z = [50,10,50,10];
k = boundary(x(:), y(:), z(:));
plot3(x(k), y(k), z(k))

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by