Integration of exp and erf
2 views (last 30 days)
Show older comments
f=
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/747709/image.png)
where
erf is error function
How to find closed form result? Pls help
0 Comments
Answers (1)
Pratyush Roy
on 27 Sep 2021
Hi Murali,
Kindly refer to the following code snippet:
syms p
expr = -exp(-p^2)*(erf(c*p+d)/sqrt(2));
symbIntegral = int(expr,p,a,inf);
evalIntegral = vpa(symbIntegral);
Hope this helps!
0 Comments
See Also
Categories
Find more on Error Functions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!