L’Hospital’s rule
26 次查看(过去 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!