how to obtain minimal surface of given coordinates?

6 vues (au cours des 30 derniers jours)
Seemab Khan
Seemab Khan le 10 Oct 2017
Commenté : Walter Roberson le 18 Oct 2017
patch = ([0,50,50,0],[0,0,50,50],[50,10,50,10])
  1 commentaire
Seemab Khan
Seemab Khan le 18 Oct 2017
minimal surface mean Optimal surface, whose surface is in equilibrium at each point.

Connectez-vous pour commenter.

Réponses (2)

Cedric
Cedric le 10 Oct 2017
Minimal in what sense?
fill3( [0,50,50,0], [0,0,50,50], [50,10,50,10], 'y' ) ;
grid on ;
  2 commentaires
Seemab Khan
Seemab Khan le 18 Oct 2017
Thanks a lot. minimal surface mean optimal surface, surface whose each point is in equilibrium.
Walter Roberson
Walter Roberson le 18 Oct 2017
What kind of output are you hoping for?

Connectez-vous pour commenter.


Walter Roberson
Walter Roberson le 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!

Translated by