Effacer les filtres
Effacer les filtres

how can i solve this integral ?

1 vue (au cours des 30 derniers jours)
m
m le 10 Juil 2014
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

Réponses (1)

Grzegorz Knor
Grzegorz Knor le 10 Juil 2014
You can solve it online using Wolfram Alpha-> solution
Or in MATLAB:
a = 0.09;
fun = @(x)1./(1-exp(a^2*x).*erfc(a*x.^(1/2)));
integral(fun,0,1000)

Catégories

En savoir plus sur Numerical Integration and Differential Equations dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by