How do i represent graphically e-r?

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

2 comentarios

Jan
Jan el 15 de En. de 2019
What does "lim r" mean?
Burebista Getae
Burebista Getae el 16 de En. de 2019
limit

Iniciar sesión para comentar.

 Respuesta aceptada

Star Strider
Star Strider el 16 de En. de 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))]))

Más respuestas (0)

Etiquetas

Preguntada:

el 15 de En. de 2019

Respondida:

el 16 de En. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by