How to integrate SS y*exp(x) dxdy using matlab?
3 ビュー (過去 30 日間)
古いコメントを表示
As the title asks. the boundary is xmin=y/4 and xmax=6-0.5*y, ymin=0, and ymax=4
1 件のコメント
Roger Stafford
2016 年 4 月 11 日
編集済み: Roger Stafford
2016 年 4 月 11 日
This is a problem you can work by hand using ordinary methods of integral calculus to get a precise answer. Probably the symbolic toolbox can do the same.
採用された回答
jgg
2016 年 4 月 11 日
I think this should work; you want the integral2 function.
fun = @(x,y)(x.*exp(y));
ymin = @(x)(x/4);
ymax = @(x)(6 - 0.5*x);
q = integral2(fun,0,4,ymin,ymax)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!