Numerical solution for convolution integral

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 日

0 投票

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 件)

カテゴリ

質問済み:

Roi
2017 年 2 月 13 日

編集済み:

2017 年 2 月 14 日

Community Treasure Hunt

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

Start Hunting!

Translated by