How can I calculate AR coefficients from zero-poles?
조회 수: 2 (최근 30일)
이전 댓글 표시
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
답변 (1개)
Azzi Abdelmalek
2012년 9월 7일
편집: Azzi Abdelmalek
2012년 9월 7일
%example,
z=1 % one zero
p=[-1 -2], % two poles
model=tf(poly(z),poly(p))
[b,a]=tfdata(model,'v')
참고 항목
카테고리
Help Center 및 File Exchange에서 Dynamic System Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!