How can i use limit function and my function ?

12 visualizzazioni (ultimi 30 giorni)
Goktug Guvercin
Goktug Guvercin il 8 Mar 2017
Commentato: Torsten il 8 Mar 2017
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

Risposte (1)

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

Accedi per commentare.

Categorie

Scopri di più su Mathematics and Optimization in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by