What is the easiest way to calculate the triple definite integral of a symbolic vector over arbitrary domain without using for loop?

1 次查看(过去 30 天)
What is the easiest way to calculate the triple integral of a symbolic vector over arbitrary domain without using for loop? e,g, -1<x,y,z<1
syms x y z
V=[sin(x*y*z), cos(z)*z*x, x*y*z^3, x+cos(z)*x]

采纳的回答

David Hill
David Hill 2022-9-8
syms x y z
V=[x,y,z];
I=int(int(int(V,x),y),z);%recognize the definite integrals do not exist for many integrals (this works but your V would be in terms in integrals)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by