How to find surface area ?

조회 수: 3 (최근 30일)
Teerapong Poltue
Teerapong Poltue 2020년 11월 10일
댓글: Walter Roberson 2020년 11월 10일
how can I find a surface area of this function on certain interval.
f = @(x,y,z) cos(x) + cos(y) + cos(z);

채택된 답변

Walter Roberson
Walter Roberson 2020년 11월 10일
So probably something close to
f = @(x,y,z) cos(x) + cos(y) + cos(z);
syms x y z real
syms xl xh yl yh zl zh real
F = f(x,y,z);
SA = int(int(int( sqrt( 1 + diff(F,x).^2 + diff(F,y).^2 + diff(F,z).^2), z, zl, zh), y, yl, yh), x, xl, xh);
disp( char(simplify(SA)) )
int(int((ellipticE(zh, 1/(cos(x)^2 + cos(y)^2 - 3)) - ellipticE(zl, 1/(cos(x)^2 + cos(y)^2 - 3)))*(3 - cos(y)^2 - cos(x)^2)^(1/2), y, yl, yh), x, xl, xh)
  댓글 수: 2
Teerapong Poltue
Teerapong Poltue 2020년 11월 10일
it isn't work.
I couldn't get from a certain interval as I expected.
Walter Roberson
Walter Roberson 2020년 11월 10일
you would substitute your interval bounds for xl xh yl yh or zl zh
Note that there probably is no closed form so you might need to vpa()

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by