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
2020-9-8
syms a b z
eq = (a-z) / ((1+z)*(b+z));
pretty(eq)
sol = int(eq,z);
pretty(sol)
类别
在 帮助中心 和 File Exchange 中查找有关 Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!