Signal Processing Toolbox    
sos2zp

Convert digital filter second-order section parameters to zero-pole-gain form.

Syntax

Description

sos2zp converts a second-order section representation of a given digital filter to an equivalent zero-pole-gain representation.

[z,p,k] = sos2zp(sos) returns the zeros z, poles p, and gain k of the system given by sos in second-order section form. The second-order section format of H(z) is given by

sos is an L-by-6 matrix that contains the coefficients of each second-order section in its rows.

Column vectors z and p contain the zeros and poles of the transfer function H(z).

where the orders n and m are determined by the matrix sos.

[z,p,k] = sos2zp(sos,g) returns the zeros z, poles p, and gain k of the system given by sos in second-order section form with gain g.

Example

Compute the poles, zeros, and gain of a simple system in second-order section form.

Algorithm

sos2zp finds the poles and zeros of each second-order section by repeatedly calling tf2zp.

See Also
sos2ss
Convert digital filter second-order section parameters to state-space form.
sos2tf
Convert digital filter second-order section parameters to transfer function form.
ss2zp
Convert state-space filter parameters to zero-pole-gain form.
tf2zp
Convert transfer function filter parameters to zero-pole-gain form.
zp2sos
Convert digital filter zero-pole-gain parameters to second-order sections form.


 sos2tf sosfilt