How to find surface area ?
3 ビュー (過去 30 日間)
古いコメントを表示
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);
0 件のコメント
採用された回答
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)) )
2 件のコメント
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 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!