how to obtain minimal surface of given coordinates?
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
patch = ([0,50,50,0],[0,0,50,50],[50,10,50,10])
Réponses (2)
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
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))
0 commentaires
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!