Azzera filtri
Azzera filtri

how to obtain minimal surface of given coordinates?

2 visualizzazioni (ultimi 30 giorni)
patch = ([0,50,50,0],[0,0,50,50],[50,10,50,10])
  1 Commento
Seemab Khan
Seemab Khan il 18 Ott 2017
minimal surface mean Optimal surface, whose surface is in equilibrium at each point.

Accedi per commentare.

Risposte (2)

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

Accedi per commentare.


Walter Roberson
Walter Roberson il 11 Ott 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