the "taylor" function does not work for me (beginner)
Mostrar comentarios más antiguos
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));
Respuestas (1)
the cyclist
el 26 de Mayo de 2021
2 votos
In the assignment statement for T3, you capitalized "Taylor". MATLAB is case-sensitive, so you must use "taylor".
4 comentarios
Szczepan Michura
el 26 de Mayo de 2021
Szczepan Michura
el 26 de Mayo de 2021
Szczepan Michura
el 26 de Mayo de 2021
Yes, it is normal to get "not found" if you misspell the name of the command.
Maybe you meant ...
help taylor
Categorías
Más información sobre Aerospace Blockset en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!