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.

Antworten (1)

Stephan
Stephan am 8 Sep. 2020

0 Stimmen

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

Kategorien

Mehr zu Programming finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 8 Sep. 2020

Beantwortet:

am 8 Sep. 2020

Community Treasure Hunt

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

Start Hunting!

Translated by