Butterworth IIR digital filter design
designs a butterworth IIR digital filter using specifications in the object
butterFilter
= butter(designSpecs
,'SystemObject',true)designSpecs
.
returns a butterworth IIR filter with one or more specified designed options and the
corresponding values.butterFilter
= butter(designSpecs
,designoption,value,...
'SystemObject',true)
To view a list of available design options, run the designoptions
function on the specification object. The function also lists the default design options the
filter uses.
designoptions(d,'butter')
is an alternative syntax for designing the butterworth IIR digital filter.butterFilter
= design(designSpecs
,'butter','SystemObject',true)
For complete help about using the butter
design method for a
specification object, designSpecs
, enter the following at the
MATLAB® command prompt.
help(designSpecs,'butter')