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에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!