how to obtain minimal surface of given coordinates?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
patch = ([0,50,50,0],[0,0,50,50],[50,10,50,10])
Risposte (2)
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
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))
0 Commenti
Vedere anche
Categorie
Scopri di più su Surface and Mesh Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!