how can i integrate two functions?

조회 수: 7 (최근 30일)
elham kreem
elham kreem 2018년 2월 9일
답변: elham kreem 2018년 2월 9일
I have this function
y*(1/c)exp(-((y-m))^2/2st) dy
where y,m,t are vectors.
I want to integrate this function from a to b , I tried but the result is wrong , the function which I wrote it in matlab is :
fun = @(y) y* exp(-(y-m).^2/(2*s*t))
q= integral(fun , -3 , 2 )
can you help me?
thanks

채택된 답변

Walter Roberson
Walter Roberson 2018년 2월 9일
Are you certain you want to be using
-((y-m))^2 * pinv(2st)
which is what the / operator approximately means?
I suspect you want
fun = @(y) y* exp(-(y-m).^2 ./ (2.*s.*t))
q = integral(fun , -3 , 2, 'ArrayValued', true);
  댓글 수: 1
elham kreem
elham kreem 2018년 2월 9일
thank you very much , the result is ok

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

추가 답변 (1개)

elham kreem
elham kreem 2018년 2월 9일
To Birdman , thank you very much your answer is ok ,

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by