adaptive lattice filter -凯发k8网页登录
adaptive lattice filter
description
the dsp.adaptivelatticefilter
system object™ computes output, error, and coefficients using a lattice-based fir adaptive
filter.
to implement the adaptive fir filter object:
create the
dsp.adaptivelatticefilter
object and set its properties.call the object with arguments, as if it were a function.
to learn more about how system objects work, see what are system objects?
creation
syntax
description
returns a
lattice-based fir adaptive filter system object, alf
= dsp.adaptivelatticefilteralf
. this system object computes the filtered output and the filter error for a given input and
desired signal.
returns an alf
= dsp.adaptivelatticefilter(len
)adaptivelatticefilter
system object with the length
property set to
len
.
returns an alf
= dsp.adaptivelatticefilter(name,value
)adaptivelatticefilter
system object with each specified property set to the specified value. enclose each
property name in single quotes. unspecified properties have default values.
properties
usage
syntax
description
[
filters the input y
,err
] = alf(x
,d
)x
, using d
as the desired
signal, and returns the filtered output in y
and the filter error in
err
. the system object estimates the filter weights needed to minimize the error
between the output signal and the desired signal. you can access these coefficients by
accessing the coefficients
property of the object. this can be done
only after calling the object. for example, to access the optimized coefficients of the
alf
filter, call alf.coefficients
after you pass
the input and desired signal to the object.
input arguments
output arguments
object functions
to use an object function, specify the
system object as the first input argument. for
example, to release system resources of a system object named obj
, use
this syntax:
release(obj)
examples
references
[1] griffiths, lloyd j. “a continuously adaptive filter implemented as a lattice structure”. proceedings of ieee int. conf. on acoustics, speech, and signal processing, hartford, ct, pp. 683–686, 1977 .
[2] haykin, s. adaptive filter theory, 4th ed. upper saddle river, nj: prentice hall, 1996.
extended capabilities
version history
introduced in r2013b