summaryrefslogtreecommitdiff
path: root/3812/CH10/EX10.41/10_41.sce
blob: 620bfcbd49cb318924dcb1f19e373457bae2fed1 (plain)
1
2
3
4
5
6
7
//Example 10_41
//Find the inverse Z-transform using long division method
clc;
clear;
z=poly(0,'z');
x=ldiv(z^3-10*z^2-4*z+4,2*z^2-2*z-4,4);
disp(x,'x[n]=');