How to do polynomial differentiation
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Raiven Balderas
le 28 Mar 2018
Commenté : Raiven Balderas
le 28 Mar 2018
How to do polynomial differentiation without using known matlab commands
2 commentaires
Guillaume
le 28 Mar 2018
Why wouldn't you want to use known matlab commands. And for that matter, what are unknown matlab commands then?
Réponse acceptée
Roger Stafford
le 28 Mar 2018
Let P be the usual Matlab row vector of coefficients of a polynomial. Then, (as we all learned in calculus,) the corresponding vector of coefficients of the polynomial's derivative, dP, is:
n = length(P);
dP = (n-1:-1:1).*P(1:n-1);
Plus de réponses (1)
Walter Roberson
le 28 Mar 2018
Multiply each location in the coefficient vector by the degree it corresponds to, and get rid of the location corresponding to degree 0. You can probably build the degree list using the ":" operator.
0 commentaires
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!