Signal Processing Toolbox Help Desk

bilinear

Purpose

Map variables using bilinear transformation.

Syntax

Description

The bilinear transformation is a mathematical mapping of variables. In digital filtering, it is a standard method of mapping the s or analog plane into the z or digital plane. It transforms analog filters, designed using classical filter design techniques, into their discrete equivalents.

The bilinear transformation maps the s-plane into the z-plane by

This transformation maps the j axis (from = -• to +•) repeatedly around the unit circle (exp(j), from = - to ) by

bilinear can accept an optional parameter Fp that specifies prewarping. Fp, in Hertz, indicates a "match" frequency, that is, a frequency for which the frequency responses before and after mapping match exactly. In prewarped mode, the bilinear transformation maps the s-plane into the z-plane with

With the prewarping option, bilinear maps the j axis (from = -• to +•) repeatedly around the unit circle (exp(j), from = - to ) by

In prewarped mode, bilinear matches the frequency 2fp (in radians per second) in the s-plane to the normalized frequency 2fp/fs (in radians per second) in the z-plane.

The bilinear function works with three different linear system representations: zero-pole-gain, transfer function, and state-space form.

Zero-Pole-Gain

[zd,pd,kd] = bilinear(z,p,k,Fs) and

[zd,pd,kd] = bilinear(z,p,k,Fs,Fp) convert the s-domain transfer function specified by z, p, and k to a discrete equivalent. Inputs z and p are column vectors containing the zeros and poles, and k is a scalar gain. Fs is the sampling frequency in Hertz. bilinear returns the discrete equivalent in column vectors zd and pd and scalar kd. Fp is the optional match frequency, in Hertz, for prewarping.

Transfer Function

[numd,dend] = bilinear(num,den,Fs) and

[numd,dend] = bilinear(num,den,Fs,Fp) convert an s-domain transfer function given by num and den to a discrete equivalent. Row vectors num and den specify the coefficients of the numerator and denominator, respectively, in descending powers of s

Fs is the sampling frequency in Hertz. bilinear returns the discrete equivalent in row vectors numd and dend in descending powers of z (ascending powers of z-1). Fp is the optional match frequency, in Hertz, for prewarping.

State-Space

[Ad,Bd,Cd,Dd] = bilinear(A,B,C,D,Fs) and

[Ad,Bd,Cd,Dd] = bilinear(A,B,C,D,Fs,Fp) convert the continuous-time state-space system in matrices A, B, C, D,

to the discrete-time system

Fs is the sampling frequency in Hertz. bilinear returns the discrete equivalent in matrices Ad, Bd, Cd, Dd. Fp is the optional match frequency, in Hertz, for prewarping.

Algorithm

bilinear uses one of two algorithms, depending on the format of the input linear system you supply. One algorithm works on the zero-pole-gain format and the other on the state-space format. For transfer function representations, bilinear converts to state-space form, performs the transformation, and converts the resulting state-space system back to transfer function form.

Zero-Pole-Gain Algorithm

For a system in zero-pole-gain form, bilinear performs four steps:

  1. If Fp is present, k = 2*pi*Fp/tan(pi*Fp/Fs); otherwise k = 2*Fs.
  2. It strips any zeros at plus or minus infinity using
  1. It transforms the zeros, poles, and gain using
  1. It adds extra zeros at -1 so the resulting system has equivalent numerator and denominator order.

State-Space Algorithm

For a system in state-space form, bilinear performs two steps:

  1. If Fp is present, k = 2*pi*Fp/tan(pi*Fp/Fs); else k = 2*Fs.
  2. It computes Ad, Bd, Cd, and Dd in terms of A, B, C, and D using

bilinear implements these relations using conventional MATLAB statements. The scalar r is arbitrary; bilinear uses sqrt(2/k) to ensure good quantization noise properties in the resulting system.

Diagnostics

bilinear requires that the numerator order be no greater than the denominator order. If this is not the case, bilinear displays:

For bilinear to distinguish between the zero-pole-gain and transfer function linear system formats, the first two input parameters must be vectors with the same orientation in these cases. If this is not the case, bilinear displays:

See Also

impinvar

Impulse invariance method of analog-to-digital filter conversion.

lp2bp

Lowpass to bandpass analog filter transformation.

lp2bs

Lowpass to bandstop analog filter transformation.

lp2hp

Lowpass to highpass analog filter transformation.

lp2lp

Lowpass to lowpass analog filter transformation.

References

[1] Parks, T.W., and C.S. Burrus. Digital Filter Design. New York: John Wiley & Sons, 1987. Pgs. 209-213.

[2] Oppenheim, A.V., and R.W. Schafer. Discrete-Time Signal Processing. Englewood Cliffs, NJ: Prentice Hall, 1989. Pgs. 415-430.



[ Previous | Help Desk | Next ]