How do I write exponential function in form of infinite series?
2 views (last 30 days)
Show older comments

1 Comment
James Tursa
on 24 Feb 2022
What have you done so far? What specific problems are you having with your code?
Answers (1)
Walter Roberson
on 24 Feb 2022
syms x k N
exp_x = symsum(x^k/factorial(k), k, 0, N)
limit(exp_x, N, inf)
0 Comments
See Also
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!