the "taylor" function does not work for me (beginner)
Show older comments
typing expressions under "taylor()" i get the message that "Unrecognized function or variable 'Taylor'"
should I download this program function from somewhere?
syms x
T1 = taylor (exp (x));
T2 = taylor (sin (x));
T3 = Taylor (cos (x));
Answers (1)
the cyclist
on 26 May 2021
2 votes
In the assignment statement for T3, you capitalized "Taylor". MATLAB is case-sensitive, so you must use "taylor".
4 Comments
Szczepan Michura
on 26 May 2021
Szczepan Michura
on 26 May 2021
Szczepan Michura
on 26 May 2021
Yes, it is normal to get "not found" if you misspell the name of the command.
Maybe you meant ...
help taylor
Categories
Find more on Aerospace Blockset 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!