How to find surface area ?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Teerapong Poltue
am 10 Nov. 2020
Kommentiert: Walter Roberson
am 10 Nov. 2020
how can I find a surface area of this function on certain interval.
f = @(x,y,z) cos(x) + cos(y) + cos(z);
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 10 Nov. 2020
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 Kommentare
Walter Roberson
am 10 Nov. 2020
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()
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!