solution for integration of following expression.
이전 댓글 표시
can any one solve this integration?
integration of ((exp(a*x))/(1+b*exp(c*x)));
댓글 수: 3
Matt Fig
2012년 9월 25일
Do you want the indefinite integral, or the integral over a certain range, or what?
Dr. Siva Malla
2012년 9월 26일
Matt Fig
2012년 9월 26일
채택된 답변
추가 답변 (1개)
Azzi Abdelmalek
2012년 9월 25일
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
Babak
2012년 9월 25일
Can you post the result of
inty
here please?
Azzi Abdelmalek
2012년 9월 25일
inty=log(exp(x) + 1)
Babak
2012년 9월 25일
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...
카테고리
도움말 센터 및 File Exchange에서 Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!