% Program 8_9 % Simulation of FIR Cascaded Lattice Structure % k = input('Type in the multiplier values = '); x0 = [1 zeros(length(k))]; [f,g] = latcfilt(k,x0); disp('Filter Coefficients');disp(f); disp('Mirror Image Filter Coefficients');disp(g);