NGMV Control Toolbox Previous page   Next Page
dcfe

Common factor extraction for discrete-time polynomials

Syntax

Description

The function extracts the common factor D of the discrete-time polynomials A and B, and converts it to the stable form D0. A0 and B0 are the resulting coprime polynomials. This function is used before a spectral factorization routine.

Examples

Say  and :

a = conv([1 -0.5],[1 -3]);
b = conv([1 0.2],[1 -3]);
[a0,b0,d0] = dcfe(a,b)
a0 =
1.0000 -0.5000
b0 =
1.0000 0.2000
d =
1 -3
d0 =
3 -1

See Also

cfe


Previous page   cfe   dcgain2  Next page