フィルターのクリア

how to obtain minimal surface of given coordinates?

2 ビュー (過去 30 日間)
Seemab Khan
Seemab Khan 2017 年 10 月 10 日
コメント済み: Walter Roberson 2017 年 10 月 18 日
patch = ([0,50,50,0],[0,0,50,50],[50,10,50,10])
  1 件のコメント
Seemab Khan
Seemab Khan 2017 年 10 月 18 日
minimal surface mean Optimal surface, whose surface is in equilibrium at each point.

サインインしてコメントする。

回答 (2 件)

Cedric
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 件のコメント
Seemab Khan
Seemab Khan 2017 年 10 月 18 日
Thanks a lot. minimal surface mean optimal surface, surface whose each point is in equilibrium.
Walter Roberson
Walter Roberson 2017 年 10 月 18 日
What kind of output are you hoping for?

サインインしてコメントする。


Walter Roberson
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))

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by