How solve a double integral analytically without using numeric methods
显示 更早的评论
I need to solve a double integral analytically without using numeric methods, which means no quad function and the like.
The integral is from -2 to 2 (outside) and 0 to 4 (inside) of
x^2 -3y^2 +xy^3 dx dy
回答(1 个)
Walter Roberson
2013-2-14
编辑:Walter Roberson
2013-2-14
If you have the symbolic toolbox
syms x y
int(int(x^2 - 3*y^2 + x*y^3, x, 0, 4), y, -2, 2)
类别
在 帮助中心 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!