how to obtain minimal surface of given coordinates?

조회 수: 6 (최근 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 CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by