Integration of exp and erf
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
f=
where
erf is error function
How to find closed form result? Pls help
0 Commenti
Risposte (1)
Pratyush Roy
il 27 Set 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 Commenti
Vedere anche
Categorie
Scopri di più su Error Functions in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!