Signal Processing Toolbox | ![]() ![]() |
Construct a discrete-time, lattice, autoregressive filter object
Syntax
Description
Hd = dfilt.latticear(k)
returns a discrete-time, lattice autoregressive filter object, Hd
, with lattice coefficients, k
.
Hd = dfilt.latticear
returns a default, discrete-time, lattice autoregressive filter object, Hd
, with k
=[ ]. This filter passes the input through to the output unchanged.
Examples
Specify a third-order lattice autoregressive filter structure for a dfilt
object, Hd
, with the following code:
k = [.66 .7 .44]; Hd = dfilt.latticear(k) Hd = FilterStructure: 'Lattice autoregressive (AR)' Lattice: [0.6600 0.7000 0.4400]
See Also
dfilt
, dfilt.latticeallpass
, dfilt.latticearma
, dfilt.latticemamax
, dfilt.latticemamin
![]() | dfilt.latticeallpass | dfilt.latticearma | ![]() |