How can I calculate AR coefficients from zero-poles?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I all, I've to calculate AutoRegressive Model coefficients starting from zeros and poles values. There is any command that can do this? I've tried with
[b,a]=zp2tf(1,p,1);
but it seems to be uncorrect.
0 commentaires
Réponses (1)
Azzi Abdelmalek
le 7 Sep 2012
Modifié(e) : Azzi Abdelmalek
le 7 Sep 2012
%example,
z=1 % one zero
p=[-1 -2], % two poles
model=tf(poly(z),poly(p))
[b,a]=tfdata(model,'v')
Voir également
Catégories
En savoir plus sur Dynamic System Models 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!