How do i write a polynomial and take the derivative?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Jose Grimaldo
le 6 Oct 2019
Réponse apportée : Stephan
le 6 Oct 2019
I want to take the derivative of a polynomial, but Im not sure how to write the polynomial in the script T(A)=A^3 - A^2 - A -1. For the derivative do i use Polyder?
0 commentaires
Réponse acceptée
Stephan
le 6 Oct 2019
>> T = [1 -1 -1 -1]
T =
1 -1 -1 -1
>> dT = polyder(T)
dT =
3 -2 -1
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Polynomials 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!