Apply design method to filter specification object
uses the filter specification object, filt
= design(designSpecs
,'Systemobject',true)designSpecs
, to generate a filter
System object™, filt
. When you do not provide a design method as an
input argument, design
uses the default design method. Use
designmethods(designSpecs,'default')
to see the default design method
for your filter design specification object. For more information on filter design
specifications, see Design a Filter in Fdesign — Process Overview.
uses the design method specified by filt
= design(designSpecs
,method
,'Systemobject',true)method
. method
must be one of the options returned by designmethods
.
specifies design method options. Use filt
= design(designSpecs
,method
,PARAM,VALUE,...,'Systemobject',true)designoptions(designSpecs,method)
to see a list of available design method options to choose from. For detailed help on each
of these options, type help(designSpecs,method)
in the MATLAB® command prompt.
specifies design method options using the structure filt
= design(designSpecs
,method
,opts
,'Systemobject',true)opts
.
opts
is usually obtained from the designopts
function and then specified as an input to the
design
function. Use help(designSpecs,method)
for more information on optional inputs.