fvtool
(To be removed) Visualize the filters in the channelizer
Description
fvtool(
visualizes the filters in
the obj
)dsp.Channelizer
System object™ using the Filter Visualization Tool (FVTool).
fvtool(
visualizes the filters corresponding to the indices in the vector
obj
,ind
)ind
. ind
is a row vector of indices
between 1
and obj.NumFrequencyBands
. By
default, this vector is [1:N], where N is the
smallest of obj.NumFrequencyBands
and
64
.
For example, to visualize the first 4 filters, set ind
to
[1:4]
.
channelizer = dsp.Channelizer; fvtool(channelizer,[1:4]);
fvtool(
visualizes the filters with additional options specified by one or more
obj
,ind
,Name,Value
)Name,Value
pair arguments.
For example, to visualize the first 4 filters in the channelizer over the Nyquist
interval [–44100/2
, 44100/2
] Hz, set
'Fs'
to 44100
. To compute the frequency
response using 1024 frequency points, set 'NFFT'
to
1024
. In addition, to visualize sum of the filter responses,
set 'overall'
to
true
.
channelizer = dsp.Channelizer; fvtool(channelizer,[1:4],'Fs',44100,'NFFT',1024,'overall',true);
Examples
Input Arguments
Version History
Introduced in R2017bSee Also
Functions
polyphase
|coeffs
|tf
|freqz
|bandedgeFrequencies
|centerFrequencies
|getFilters