For the system given by the difference equation below:
Y(n) – (3/2).Y(n-1) – Y(n-2) = -(5/2). X(n-1)
%part c
b = [0 -5/2];a = [1 -3/2 -1];
zplane(b,a);
output:
%part d
Since there is one pole lying outside unit circle it is not stable
%part e
figure();
impz(b,a);
%part f
figure();
stepz(b,a);
%part g
figure();
freqz(b,a);
Get Answers For Free
Most questions answered within 1 hours.