Experiment 4:: Study of Z-Transform and Its Application
Experiment 4:: Study of Z-Transform and Its Application
Experiment 4:: Study of Z-Transform and Its Application
In signal processing, this definition can be used to evaluate the Z-transform of the unit impulse
response of a discrete-time causal system.
An important example of the unilateral Z-transform is the probability-generating function, where
the component x[n] is the probability that a discrete random variable takes the value n, and the
function X(z) is usually written as X(s), in terms of s = z1.
The inverse Z-transform is
where C is a counterclockwise closed path encircling the origin and entirely in the region of
convergence (ROC).
ALGORITHM/PROCEDURE:
1. Start the program
2. Get the inputs for signal generation
3. Use the appropriate library function
4. Display the result
SOURCE CODE :
%program to perform z transform and inverse z transform
clear all;
close all;
clc
syms a n x
f = a^n;
ztrans(f , x)
iztrans(f , x)
Output
RESULT:
The program to study Z-transform is complete.