e=lim r
r=(1+1/n)^n
n=5:5:500

2 commentaires

Jan
Jan le 15 Jan 2019
What does "lim r" mean?
Burebista Getae
Burebista Getae le 16 Jan 2019
limit

Connectez-vous pour commenter.

 Réponse acceptée

Star Strider
Star Strider le 16 Jan 2019
Try this:
syms r(n) n
r(n)=(1+1/n)^n;
lim_r = limit(r, n, Inf)
fplot(r, [0 500], '-b')
hold on
fplot(lim_r, [0 500], '--r')
hold off
ylim(double([r(eps) ceil(r(500))]))

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by