How to integrate SS y*exp(x) dxdy using matlab?

조회 수: 2 (최근 30일)
Mathidiot Superfacial
Mathidiot Superfacial 2016년 4월 11일
편집: Roger Stafford 2016년 4월 11일
As the title asks. the boundary is xmin=y/4 and xmax=6-0.5*y, ymin=0, and ymax=4
  댓글 수: 1
Roger Stafford
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
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개)

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by