designHighpassFIR
Description
designs a highpass
FIR filter with the filter order of 100, cutoff frequency of 0.25, and a Hamming window.
B is a vector of filter coefficients of length 101.B
= designHighpassFIR
The System object™ argument is false
by default. To implement the filter,
assign the filter coefficients in B
to a dsp.FIRFilter
object.
specifies options using one or more name-value arguments.B
= designHighpassFIR(Name=Value
)
For example,
designs a highpass FIR filter with the filter order of 30, cutoff frequency of 0.5, and
a Hann window. As the B
=
designHighpassFIR
(FilterOrder
=30,CutoffFrequency
=0.5,Window
="hann",SystemObject
=true)SystemObject
argument is
true
, the function designs and implements the highpass FIR filter.
B
is a dsp.FIRFilter
System object in this case.
When you specify only a partial list of filter parameters, the function designs the filter by setting the other design parameters to their default values.
Examples
Input Arguments
Output Arguments
Extended Capabilities
Version History
Introduced in R2023b
See Also
Functions
designHighpassIIR
|designLowpassFIR
|designBandpassFIR
|designBandstopFIR
|designHalfbandFIR
|designMultirateFIR
|designFracDelayFIR