How do i represent graphically e-r?

 Accepted Answer

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))]))

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!