Chebyshev Type I filter using specification object
chebOneFilter = design(d,'cheby1','SystemObject',true)
chebOneFilter = design(d,'cheby1',designoption,value,designoption,
value,'SystemObject',true)
chebOneFilter = design(d,'cheby1','SystemObject',true)
designs
a type I Chebyshev IIR digital filter using the specifications supplied
in the object d
. Depending on the filter specification
object, cheby1
may or may not be a valid design.
Use designmethods
with the filter
specification object to determine if a Chebyshev type I filter design
is possible.
chebOneFilter = design(d,'cheby1',designoption,value,designoption,
returns a type I Chebyshev
IIR filter where you specify design options as input arguments.
value,'SystemObject',true)
To determine the available design options, use designopts
with the specification object
and the design method as input arguments as shown.
designopts(d,'method')
For complete help about using cheby1
, refer
to the command line help system. For example, to get specific information
about using cheby1
with d
, the
specification object, enter the following at the MATLAB prompt.
help(d,'cheby1')