How can I calculate AR coefficients from zero-poles?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Azzi Abdelmalek
el 7 de Sept. de 2012
Editada: Azzi Abdelmalek
el 7 de Sept. de 2012
%example,
z=1 % one zero
p=[-1 -2], % two poles
model=tf(poly(z),poly(p))
[b,a]=tfdata(model,'v')
2 comentarios
Azzi Abdelmalek
el 7 de Sept. de 2012
use
lsim(model,u,t)
% t is time
% u yuour white noise
Ver también
Categorías
Más información sobre Dynamic System Models en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!