Effacer les filtres
Effacer les filtres

How solve a double integral analytically without using numeric methods

3 vues (au cours des 30 derniers jours)
Heather
Heather le 14 Fév 2013
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

Réponses (1)

Walter Roberson
Walter Roberson le 14 Fév 2013
Modifié(e) : Walter Roberson le 14 Fév 2013
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)

Community Treasure Hunt

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

Start Hunting!

Translated by