how to obtain minimal surface of given coordinates?
1 view (last 30 days)
Show older comments
patch = ([0,50,50,0],[0,0,50,50],[50,10,50,10])
Answers (2)
Cedric
on 10 Oct 2017
Minimal in what sense?
fill3( [0,50,50,0], [0,0,50,50], [50,10,50,10], 'y' ) ;
grid on ;
2 Comments
Walter Roberson
on 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 Comments
See Also
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!