Filter löschen
Filter löschen

How solve a double integral analytically without using numeric methods

3 Ansichten (letzte 30 Tage)
Heather
Heather am 14 Feb. 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

Antworten (1)

Walter Roberson
Walter Roberson am 14 Feb. 2013
Bearbeitet: Walter Roberson am 14 Feb. 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