freqz
Frequency response of digital filter
Syntax
Description
freqz(___)
with
no output arguments plots the frequency response of the filter.
Examples
Input Arguments
Output Arguments
Tips
If you have an irreducible multirate filter, use
the freqzmr
(DSP System Toolbox)
function to analyze the filter in the frequency domain. For more information on
irreducible multirate filters, see Overview of Multirate Filters (DSP System Toolbox). (since R2024a)
The freqzmr
(DSP System Toolbox)
function requires DSP System Toolbox™. (since R2024a)
Algorithms
The frequency response of a digital filter can be interpreted as the transfer function evaluated at z = ejω [1].
freqz
determines the transfer function from
the (real or complex) numerator and denominator polynomials you specify
and returns the complex frequency response, H(ejω),
of a digital filter. The frequency response is evaluated at sample
points determined by the syntax that you use.
freqz
generally uses an FFT algorithm to compute the frequency response
whenever you do not supply a vector of frequencies as an input argument. It computes the
frequency response as the ratio of the transformed numerator and denominator
coefficients, padded with zeros to the desired length.
When you do supply a vector of frequencies as input, freqz
evaluates the
polynomials at each frequency point and divides the numerator response by the
denominator response. To evaluate the polynomials, the function uses Horner's
method.
References
[1] Oppenheim, Alan V., and Ronald W. Schafer, with John R. Buck. Discrete-Time Signal Processing. 2nd Ed. Upper Saddle River, NJ: Prentice Hall, 1999.