how to obtain minimal surface of given coordinates?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
patch = ([0,50,50,0],[0,0,50,50],[50,10,50,10])
Antworten (2)
Cedric
am 10 Okt. 2017
Minimal in what sense?
fill3( [0,50,50,0], [0,0,50,50], [50,10,50,10], 'y' ) ;
grid on ;
2 Kommentare
Walter Roberson
am 11 Okt. 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 Kommentare
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!