the "taylor" function does not work for me (beginner)
古いコメントを表示
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));
回答 (1 件)
the cyclist
2021 年 5 月 26 日
2 投票
In the assignment statement for T3, you capitalized "Taylor". MATLAB is case-sensitive, so you must use "taylor".
4 件のコメント
Szczepan Michura
2021 年 5 月 26 日
Szczepan Michura
2021 年 5 月 26 日
Szczepan Michura
2021 年 5 月 26 日
Yes, it is normal to get "not found" if you misspell the name of the command.
Maybe you meant ...
help taylor
カテゴリ
ヘルプ センター および File Exchange で Aerospace Blockset についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!