Signal Processing Toolbox |
Discrete-time, second-order section, direct-form II filter
Syntax
Description
Hd = dfilt.df2sos(s)
returns a discrete-time, second-order section, direct-form II filter, Hd
, with coefficients given in the s
matrix.
Hd = dfilt.df2sos(b1,a1,b2,a2,...)
returns a discrete-time, second-order section, direct-form II object, Hd
, with coefficients for the first section given in the b1
and a1
vectors, for the second section given in the b2
and a2
vectors, etc.
Hd = dfilt.df2sos(...,g)
includes a gain vector g
. The elements of g
are the gains for each section. The maximum length of g
is the number of sections plus one. If g
is not specified, all gains default to one.
Hd = dfilt.df2sos
returns a default, discrete-time, second-order section, direct-form II filter, Hd
. This filter passes the input through to the output unchanged.
The resulting filter states column vector is
For filters with more than one section, each section is a separate column in the vector.
Examples
Specify a second-order sections, direct-form II discrete-time filter with coefficients from a sixth order, low pass, elliptical filter using the following code:
[z,p,k] = ellip(6,1,60,.4); % Obtain filter coefficients [s,g] = zp2sos(z,p,k); % Convert to SOS Hd = dfilt.df2sos(s,g) Hd = FilterStructure: [1x37 char] sosMatrix: [3x6 double] ScaleValues: [4x1 double] PersistentMemory: false Hd.FilterStructure % Display FilterStructure string ans = Direct-Form II Transposed, Second-Order Sections
See Also
dfilt
, dfilt.df1sos
, dfilt.df1tsos
, dfilt.df2tsos
dfilt.df2 | dfilt.df2t |
© 1994-2005 The MathWorks, Inc.