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!