필터 지우기
필터 지우기

How solve a double integral analytically without using numeric methods

조회 수: 3 (최근 30일)
Heather
Heather 2013년 2월 14일
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
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)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by