How to i use a syntax' taylor' to apporiximate a function e.g logx using base point at x=1
3 views (last 30 days)
Show older comments
How to i use a syntax' taylor' to apporiximate a function e.g logx using base point at x=1
0 Comments
Answers (1)
Walter Roberson
on 13 Sep 2018
syms x
taylor(log(x), 1)
3 Comments
Walter Roberson
on 13 Sep 2018
taylor(log(x), x, 1)
See the taylor documentation for how to change the order.
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!