deconv result does not match with polynomial division.
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Seetha Rama Raju Sanapala
le 12 Avr 2015
Modifié(e) : Jan
le 12 Avr 2015
I wanted to divide x^2+5x+6 by x+1 and get the quotient and remainder and used deconv as below.
[q,r]=deconv([6 5 1], [1 1])
I expected the answer to be
q = [4 1] and r = 2. But what I got was
q = [6 -1] and r = [0 0 2]. What are the comments on this result?
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Polynomials dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!