Signal Processing Toolbox Help Desk

sos2tf

Purpose

Second-order section to transfer function conversion.

Syntax

Description

sos2tf converts a second-order section representation of a given system to an equivalent transfer function representation.

[b,a] = sos2tf(sos) returns the numerator coefficients b and denominator coefficients a of the transfer function that describes a discrete-time system given by sos in second-order section form. The second-order section format of H(z) is given by

where L is the number of rows of sos. sos is an L-by-6 matrix which contains the coefficients of each second-order section stored in its rows:

Row vectors b and a contain the numerator and denominator coefficients of H(z) stored in descending powers of z:

Algorithm

sos2tf uses the conv function to multiply all of the numerator and denominator second-order polynomials together.

Example

Compute the transfer function representation of a simple second-order section form system:

See Also

sos2ss

Second-order section to state-space conversion.

sos2zp

Second-order section to zero-pole-gain conversion.

ss2sos

State-space to second-order section conversion.

zp2sos

Zero-pole-gain to second-order section conversion.



[ Previous | Help Desk | Next ]