summaryrefslogtreecommitdiff
path: root/67/CH7/EX7.19/example719.sce
blob: aefe77b5808654be0b2333a6d0b0116dcdd50a47 (plain)
1
2
3
4
5
6
7
//Example 7.19
//Find the inverse Z-transform using long division method
clc;
clear;
z=poly(0,'z');
x=ldiv(z^2,z^2-(3/2)*z+(1/2),4);
disp(x,'x[n]=');