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

2 件のコメント

Jan
Jan 2019 年 1 月 15 日
What does "lim r" mean?
Burebista Getae
Burebista Getae 2019 年 1 月 16 日
limit

サインインしてコメントする。

 採用された回答

Star Strider
Star Strider 2019 年 1 月 16 日

1 投票

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

その他の回答 (0 件)

カテゴリ

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by