how do you use the built taylor function, can some one give an example
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how do you use the built taylor function, can some one give an example
0 commentaires
Réponse acceptée
James Tursa
le 23 Juil 2012
Modifié(e) : James Tursa
le 23 Juil 2012
From the documentation:
syms x
taylor(exp(x))
taylor(sin(x))
taylor(cos(x))
ans =
x^5/120 + x^4/24 + x^3/6 + x^2/2 + x + 1
ans =
x^5/120 - x^3/6 + x
ans =
x^4/24 - x^2/2 + 1
Note that this requires the symbolic math toolbox.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Calculus dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!