How can i use limit function and my function ?

13 次查看(过去 30 天)
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

回答(1 个)

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

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Mathematics and Optimization 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by