Summary: This module will look at the relationships between the z-transform and the complex plane. Specifically, the creation of pole/zero plots and some of their useful properties are discussed.
Note: Your browser may not currently support MathML. See our browser support page for additional details. You can always view the correct math in the PDF version.
Once the Z-transform of a system has been determined, one can use the information contained in function's polynomials to graphically represent the function and easily observe many defining characteristics. The Z-transform will have the below structure, based on Rational Functions:
The two polynomials,
Below is a simple transfer function with the poles and zeros
shown below it.
The zeros are:
The poles are:
Once the poles and zeros have been found for a given
Z-Transform, they can be plotted onto the Z-Plane. The
Z-plane is a complex plane with an imaginary and real axis
referring to the complex-valued variable
| Z-Plane |
|---|
![]() |
This section lists several examples of finding the poles and zeros of a transfer function and then plotting them onto the Z-Plane.
The zeros are:
The poles are:
| Pole/Zero Plot |
|---|
![]() |
The zeros are:
The poles are:
| Pole/Zero Plot |
|---|
![]() |
MATLAB - If access to MATLAB is readily available, then you can use its functions to easily create pole/zero plots. Below is a short program that plots the poles and zeros from the above example onto the Z-Plane.
% Set up vector for zeros
z = [j ; -j];
% Set up vector for poles
p = [-1 ; .5+.5j ; .5-.5j];
figure(1);
zplane(z,p);
title('Pole/Zero Plot for Complex Pole/Zero Plot Example');
The region of convergence (ROC) for
| Region of Convergence for the Pole/Zero Plot |
|---|
![]() |
The reason it is helpful to understand and create these pole/zero plots is due to their ability to help us easily design a filter. Based on the location of the poles and zeros, the magnitude response of the filter can be quickly understood. Also, by starting with the pole/zero plot, one can design a filter and obtain its transfer function very easily. Refer to this module for information on the relationship between the pole/zero plot and the frequency response.
"My introduction to signal processing course at Rice University."