Matlab LPF Cascade Implementation

x = [1 zeros(1, N-1)];

Cascade...

B = [1 1];
A = [1];
y1 = filter(B, A, x);
y2 = filter(B, A, y1);
y3 = filter(B, A, y2);
y4 = filter(B, A, y3);

Or Simply...

B = [1 5 10 10 5 1];
A = [1];
y = filter(B, A, x);


``Mus 270a: Introduction to Digital Filters'' by Tamara Smyth, Department of Music, University of California, San Diego.
Download PDF version (filters.pdf)
Download compressed PostScript version (filters.ps.gz)
Download PDF `4 up' version (filters_4up.pdf)
Download compressed PostScript `4 up' version (filters_4up.ps.gz)

Copyright © 2019-02-25 by Tamara Smyth.
Please email errata, comments, and suggestions to Tamara Smyth<trsmyth@ucsd.edu>