how to obtain minimal surface of given coordinates?
조회 수: 6 (최근 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!