how to obtain minimal surface of given coordinates?
5 ビュー (過去 30 日間)
古いコメントを表示
patch = ([0,50,50,0],[0,0,50,50],[50,10,50,10])
回答 (2 件)
Cedric
2017 年 10 月 10 日
Minimal in what sense?
fill3( [0,50,50,0], [0,0,50,50], [50,10,50,10], 'y' ) ;
grid on ;
2 件のコメント
Walter Roberson
2017 年 10 月 11 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!