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

카테고리

태그

질문:

2019년 1월 15일

답변:

2019년 1월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by