L’Hospital’s rule
조회 수: 28 (최근 30일)
이전 댓글 표시
i want solve a limit function by L'Hospital Rule.
syms x
a=x+2
b=x^2+3*x+2
c=a/b
limit(a,-2)
ans=0
댓글 수: 0
채택된 답변
추가 답변 (1개)
Sam Chak
2022년 10월 12일
Probably more clearly for you if you insert the expression directly
syms x
limit((x + 2)/(x^2 + 3*x + 2), -2)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!