how to obtain minimal surface of given coordinates?

1 visualización (últimos 30 días)
Seemab Khan
Seemab Khan el 10 de Oct. de 2017
Comentada: Walter Roberson el 18 de Oct. de 2017
patch = ([0,50,50,0],[0,0,50,50],[50,10,50,10])
  1 comentario
Seemab Khan
Seemab Khan el 18 de Oct. de 2017
minimal surface mean Optimal surface, whose surface is in equilibrium at each point.

Iniciar sesión para comentar.

Respuestas (2)

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

Iniciar sesión para comentar.


Walter Roberson
Walter Roberson el 11 de Oct. de 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))

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by