Search Introduction to Digital Filters
Book Index | Global Index
Would you like to be notified by email when Julius Orion Smith III publishes a new entry into his blog?
Software Implementation in Matlab
In Matlab or Octave, this type of filter can be implemented
using the filter function. For example, the following
matlab4.1 code
computes the output signal y given the input signal
x for a specific example comb filter:
g1 = (0.5)^3; % Some specific coefficients
g2 = (0.9)^5;
B = [1 0 0 g1]; % Feedforward coefficients, M1=3
A = [1 0 0 0 0 g2]; % Feedback coefficients, M2=5
N = 1000; % Number of signal samples
x = rand(N,1); % Random test input signal
y = filter(B,A,x); % Matlab and Octave compatible
The example coefficients,

and

, are chosen to place all filter zeros at radius

and all
filter
poles at radius

in the complex

plane (as we shall see
below).
The matlab filter function carries out the following computation
for each element of the y array:
for

, where
NA = length(A)
and
NB = length(B). Note that the indices of
x and
y can go negative in this expression. By default, such terms
are replaced by zero. However, the
filter function has an
optional fourth argument for specifying the
initial state of
the filter, which includes past input and past output samples seen by
the filter. This argument is used to forward the filter's state
across successive blocks of data:
[y1,state] = filter(B,A,x1); % filter 1st block x1
[y2,state] = filter(B,A,x2,state); % filter 2nd block x2
...
Subsections
Previous:
Signal Flow GraphNext:
Sample-Level Implementation in Matlab
written by Julius Orion Smith III
Julius Smith's background is in electrical engineering (BS Rice 1975, PhD Stanford 1983). He is presently Professor of Music and Associate Professor (by courtesy) of Electrical Engineering at
Stanford's Center for Computer Research in Music and Acoustics (CCRMA), teaching courses and pursuing research related to signal processing applied to music and audio systems. See
http://ccrma.stanford.edu/~jos/ for details.