filter clarity needed - does no. of coefficients = order = no. of poles and zeros?
8 次查看(过去 30 天)
显示 更早的评论
does the no. of filter coefficients also equal the order and also the no. of poles and zeros?
thanks
1 个评论
Matt Fig
2012-11-2
Tom's question
does the no. of filter coefficients also equal the order and also the no. of poles and zeros?
thanks
采纳的回答
Wayne King
2012-5-21
No, not the number of coefficients, but there is a relationship with the order. The order is one less than the number of coefficients. Remember there is a 0-th order coefficient.
For the rational systems that you are dealing with, the number of poles and zeros will be the same and that will be equal to the largest order (numerator or denominator).
If you use butter(), ellip(), then MATLAB will return identical orders for both the numerator and denominator.
[b,a] = butter(10,0.2);
isequal(length(b),length(a))
There will be 10 poles and 10 zeros.
But note that even if the numerator and denominator orders are different.
B = 1;
A = [1 -0.5 0.2];
zplane(B,A)
The number of zeros and poles are identical and that number is equal to the highest order of the numerator or denominator. In the above that is 2.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Filter Analysis 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!