how to obtain minimal surface of given coordinates?

1 view (last 30 days)
patch = ([0,50,50,0],[0,0,50,50],[50,10,50,10])
  1 Comment
Seemab Khan
Seemab Khan on 18 Oct 2017
minimal surface mean Optimal surface, whose surface is in equilibrium at each point.

Sign in to comment.

Answers (2)

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

Sign in to comment.


Walter Roberson
Walter Roberson on 11 Oct 2017
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))

Community Treasure Hunt

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

Start Hunting!