how can i solve this integral ?
1 view (last 30 days)
Show older comments
hi , how can i solve this integral ?
1/(1-exp(a^2*x)*erfc(a*x^1/2)) ... a is const , a=0.09 and x=0..1000
0 Comments
Answers (1)
Grzegorz Knor
on 10 Jul 2014
Or in MATLAB:
a = 0.09;
fun = @(x)1./(1-exp(a^2*x).*erfc(a*x.^(1/2)));
integral(fun,0,1000)
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!