solution for integration of following expression.
Show older comments
can any one solve this integration?
integration of ((exp(a*x))/(1+b*exp(c*x)));
3 Comments
Matt Fig
on 25 Sep 2012
Do you want the indefinite integral, or the integral over a certain range, or what?
Dr. Siva Malla
on 26 Sep 2012
Matt Fig
on 26 Sep 2012
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 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 Comments
Babak
on 25 Sep 2012
Can you post the result of
inty
here please?
Azzi Abdelmalek
on 25 Sep 2012
inty=log(exp(x) + 1)
Babak
on 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...
Categories
Find more on Programming 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!