L’Hospital’s rule

조회 수: 28 (최근 30일)
MANANJAYA NAYAK
MANANJAYA NAYAK 2022년 10월 12일
답변: Sam Chak 2022년 10월 12일
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

채택된 답변

Torsten
Torsten 2022년 10월 12일
syms x
a=x+2;
b=x^2+3*x+2;
c=a/b;
limit(c,-2)
ans = 

추가 답변 (1개)

Sam Chak
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)
ans = 

카테고리

Help CenterFile Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by