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]=');