Solving Integral via MATLAB!!

Can anyone slove the following integral in MATLAB or in Closed-form? Thanks in advance.
where a and b are any positive real numbers.

답변 (1개)

Stephan
Stephan 2020년 9월 8일

0 개 추천

syms a b z
eq = (a-z) / ((1+z)*(b+z));
pretty(eq)
sol = int(eq,z);
pretty(sol)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

질문:

2020년 9월 8일

답변:

2020년 9월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by