How can i use limit function and my function ?

13 views (last 30 days)
I want to define a function which gives me limit of (1 + 1/x)^x when x goes to infinity. However, the function must be user defined function. In other words, i want to match limit function and my function

Answers (1)

Torsten
Torsten on 8 Mar 2017
f=@(x)exp(1)
Best wishes
Torsten.
  3 Comments
Goktug Guvercin
Goktug Guvercin on 8 Mar 2017
function O = lim(x)
O = limit( (1 + 1/x)^x, x, inf)
lim(8) is also not working
Torsten
Torsten on 8 Mar 2017
Maybe
syms x
fs = (1+1/x)^x ;
lfs = limit(fs,x,inf);
hfs = matlabFunction(lfs)
?
Best wishes
Torsten.

Sign in to comment.

Categories

Find more on Mathematics and Optimization in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!