Solve equation that includes integral with variable upper limit.

quadgk((1./(1000.*sqrt(2.*pi))).*(y-x-100).*exp(-((x-150).^2)./200),y-200,y-100)+quadgk((1./(10.*sqrt(2.*pi))).*(exp(-((x-150).^2)./200)),-inf,y-200)=0.53
How to solve the above equation? I want know the value of y.
I can not use fzero function. Please help me. Thanks!

댓글 수: 3

Are there any other functions that you are not permitted to use besides fzero()?
Are you permitted to use the symbolic toolbox?
Your reference to quadgk suggests that you are using an older version of MATLAB. Which release are you using?

댓글을 달려면 로그인하십시오.

 채택된 답변

Walter Roberson
Walter Roberson 2017년 1월 26일
FUN = @(Y)arrayfun(@(y)quadgk(@(x)(1./(1000.*sqrt(2.*pi))).*(y-x-100).*exp(-((x-150).^2)./200),y-200,y-100)+quadgk(@(x)(1./(10.*sqrt(2.*pi))).*(exp(-((x-150).^2)./200)),-inf,y-200),Y)
Now find the zeros of FUN - 0.53
Be careful, though: there gets to be a lot of numeric error beyond about 750.

댓글 수: 3

Thanks! I got the result.^_^
How did you get the result? Can you show us some detail steps?Thank you!
Weijian Yan, are you not permitted to use fzero() either, the way the original poster was not permitted for unknown reasons?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

제품

질문:

2017년 1월 25일

댓글:

2018년 6월 3일

Community Treasure Hunt

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

Start Hunting!

Translated by