Numerical solution for convolution integral

조회 수: 12 (최근 30일)
Roi
Roi 2017년 2월 13일
편집: Torsten 2017년 2월 14일
Hi, I need to solve numerically the attached double integral, where x1 and x2 are variables, a is constant. x1 comprises the boundary of the first integration.
Can someone suggest how to do this?
Best Regards,

채택된 답변

Torsten
Torsten 2017년 2월 14일
편집: Torsten 2017년 2월 14일
a=...;
L=...;
fun=@(x,y)(0.5*x.^3+x.^2).*exp(-x/a).*(0.5*y.^3+y.^2);
upper_y=@(x)x;
q=integral2(fun,0,L,0,upper_y);
Best wishes
Torsten.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differentiation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by