Solving an integral with variable as upper limit and plotting the solution

조회 수: 8 (최근 30일)
How can I solve an integral when the upper limit is a variable, and then plot the solution? My integral is as follows: Integral of e^(-(y^2))dy and my upper limit is x, while the lower limit is negative infinity. X and y are variables. I have tried using the trapz function, but then you must have a constant as upper limit. I have also tried using the int-funtion, but that is only solving for an indefinite integral. Does anyone know what I should do?

채택된 답변

Torsten
Torsten 2015년 1월 20일
Your function is equal to
sqrt(pi)/2*(1+erf(x))
Best wishes
Torsten.
  댓글 수: 1
john zhang
john zhang 2020년 8월 12일
what if the function is very complex and has no general antiderivative? Thank you

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

추가 답변 (4개)

Alessandro Masullo
Alessandro Masullo 2015년 1월 20일
You can use cumsum or cumtrapz.

David
David 2015년 1월 20일
Ok, thank you both for your answers. But I do not understand how I should write when I want to use a variable as the upper limit. How is that possible?

David
David 2015년 1월 20일
I have now tried to use the while loop for some time and it looks like this:
upper_limit=-1;
while upper_limit<1
upper_limit=upper_limit+0.1;
theta=[-10^5:upper_limit];
y=(pi^(-(0.5)))*exp(-(theta.^2));
z=trapz(theta,y);
end
The problem now is that I only get the final answer to be z. I am not sure if this is correct, but is it possible to get all the answers into a vector som that it can be used in the plotting?
David
  댓글 수: 4
David
David 2015년 1월 21일
Thank you very much for new anwers. I have now tried to use the erf function for some time, but I have a problem. My error function had limits from negative infinity to x. X=[-0.5:0.5]. But the erf function has a lower boundary equal to 0. How is it possible to find the value when the lower boundary is negative infinity?
David
John D'Errico
John D'Errico 2015년 1월 21일
You could just use basic calculus.
erf gives you the integral from 0 to x. If you want the integral from -inf to x, then add 1. This is because the integral from -inf to 0 is 1.
erf(-inf)
ans =
-1
(Beware of the order of those limits, which gives me here -1.)
So the integral from -inf to x is
1 + erf(x)
Which is valid for any real x as your upper limit.

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


David
David 2015년 1월 21일
Thank you very much all of you! Your help is very much appreciated. Now I understand how it can be computed in matlab, and how to find the integral from negative infinity to zero.
David

카테고리

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