To visualize a subset of filters in the filter bank, specify the second argument as a row vector of indices between one and the number of filters in the filter bank. If not specified, fvtool visualizes 1 to N filters of the filter bank, where N is the smallest of octFiltBank.NumFilters and 64. Visualize the ninth filter.
fvtool(octFiltBank,9);
To specify the number of FFT points used to compute the frequency response, use the NFFT name-value pair. Specify that the frequency response is calculated using a 8192-point FFT.
To visualize a subset of filters in the filter bank, specify the second argument as a row vector of indices between one and the number of filters in the filter bank. If not specified, fvtool visualizes 1 to N filters of the filter bank, where N is the smallest of gammaFiltBank.NumFilters and 64. Visualize the ninth filter.
fvtool(gammaFiltBank,9);
To specify the number of FFT points used to compute the frequency response, use the NFFT name-value pair. Specify that the frequency response is calculated using a 8192-point FFT.
ind — Indices of filters to calculate frequency responses from 1:max(N,64) (default) | row vector of integers with values in the range [1, N]
Indices of filters to calculate frequency responses from, specified as a row vector
of integers with values in the range [1, N]. N is
the total number of filters designed by obj.
Name-Value Pair Arguments
Specify optional
comma-separated pairs of Name,Value arguments. Name is
the argument name and Value is the corresponding value.
Name must appear inside quotes. You can specify several name and value
pair arguments in any order as
Name1,Value1,...,NameN,ValueN.
Example: 'NFFT',2048
'NFFT' — Number of DFT bins 8192 (default) | positive integer
Number of DFT bins, specified as a positive integer.