solution for integration of following expression.
Afficher commentaires plus anciens
can any one solve this integration?
integration of ((exp(a*x))/(1+b*exp(c*x)));
3 commentaires
Matt Fig
le 25 Sep 2012
Do you want the indefinite integral, or the integral over a certain range, or what?
Dr. Siva Malla
le 26 Sep 2012
Matt Fig
le 26 Sep 2012
Réponse acceptée
Plus de réponses (1)
Azzi Abdelmalek
le 25 Sep 2012
syms x
% you must assign values to a b and c to find result
a=1;b=1;c=1;
y=((exp(a*x))/(1+b*exp(c*x)))
inty=int(y)
4 commentaires
Babak
le 25 Sep 2012
Can you post the result of
inty
here please?
Azzi Abdelmalek
le 25 Sep 2012
inty=log(exp(x) + 1)
Babak
le 25 Sep 2012
Thanks! It confirms the result of
1/(a*b)* log(1+b*y)
for the case where c/a=1 in my answer above. I don't think MATLAB can do the integral when a, b and c are all syms though...
Catégories
En savoir plus sur Calculus dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!