DADiSP Worksheet Functions > Function Categories > Fourier Transforms and Signal Processing > CPHASE
Evaluates the phase response of cascade form filter coefficients.
CPHASE(c, N, r)
c |
- |
A series. The filter coefficients in cascade format. |
N |
- |
Optional. An integer, the number of output samples. Defaults to 2048. |
r |
- |
Optional. A real, the sample rate of the data. Defaults to rate of filter. |
A real series. The phase response of the filter in radians.
W1: elliptic(1,1000.0,200.0,3.0,40.0,250.0)
W2: cphase(W1, 1024)
W1 contains the
CPHASE employs ZFREQ to evaluate N uniformly spaced samples of the complex frequency response of the filter. The cascade coefficients are converted to direct form and the complex frequency response is evaluated using the FFT. The phase of the complex frequency response is returned.
CPHASE is appropriate for computing the phase response of the IIR filters created by BESSEL, BUTTERWORTH, CHEBY1, CHEBY2 and ELLIPTIC filter design functions provided by DADiSP/Filters.
See CLOGMAG to compute the magnitude response of cascade form coefficients.
See CASCADE for more information on cascade form coefficients.