Azzera filtri
Azzera filtri

L’Hospital’s rule

45 visualizzazioni (ultimi 30 giorni)
MANANJAYA NAYAK
MANANJAYA NAYAK il 12 Ott 2022
Risposto: Sam Chak il 12 Ott 2022
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

Risposta accettata

Torsten
Torsten il 12 Ott 2022
syms x
a=x+2;
b=x^2+3*x+2;
c=a/b;
limit(c,-2)
ans = 

Più risposte (1)

Sam Chak
Sam Chak il 12 Ott 2022
Probably more clearly for you if you insert the expression directly
syms x
limit((x + 2)/(x^2 + 3*x + 2), -2)
ans = 

Tag

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by