solution for integration of following expression.
Mostrar comentarios más antiguos
can any one solve this integration?
integration of ((exp(a*x))/(1+b*exp(c*x)));
3 comentarios
Matt Fig
el 25 de Sept. de 2012
Do you want the indefinite integral, or the integral over a certain range, or what?
Dr. Siva Malla
el 26 de Sept. de 2012
Matt Fig
el 26 de Sept. de 2012
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 25 de Sept. de 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 comentarios
Babak
el 25 de Sept. de 2012
Can you post the result of
inty
here please?
Azzi Abdelmalek
el 25 de Sept. de 2012
inty=log(exp(x) + 1)
Babak
el 25 de Sept. de 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...
Categorías
Más información sobre Programming en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!