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.

Answers (1)

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

Categories

Find more on Programming in Help Center and File Exchange

Tags

Asked:

on 8 Sep 2020

Answered:

on 8 Sep 2020

Community Treasure Hunt

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

Start Hunting!