diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-06-19 21:10:23 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-06-19 21:10:23 -0400 |
commit | b41f7f77cb3a59b54e4511be5069edbbfc27c2ad (patch) | |
tree | 3534298c17a35b97d232944bde4789de501264e9 /gr-filter/include | |
parent | a5a03740b546cc0b4f3dc631e4cf1f354a143652 (diff) |
filter: removed all references to filter functions from gr namespace to filter.
Diffstat (limited to 'gr-filter/include')
-rw-r--r-- | gr-filter/include/filter/pfb_arb_resampler_ccf.h | 4 | ||||
-rw-r--r-- | gr-filter/include/filter/pfb_arb_resampler_fff.h | 4 | ||||
-rw-r--r-- | gr-filter/include/filter/pfb_channelizer_ccf.h | 4 | ||||
-rw-r--r-- | gr-filter/include/filter/pfb_decimator_ccf.h | 4 | ||||
-rw-r--r-- | gr-filter/include/filter/pfb_interpolator_ccf.h | 4 | ||||
-rw-r--r-- | gr-filter/include/filter/polyphase_filterbank.h | 4 |
6 files changed, 12 insertions, 12 deletions
diff --git a/gr-filter/include/filter/pfb_arb_resampler_ccf.h b/gr-filter/include/filter/pfb_arb_resampler_ccf.h index 1436674b2b..cf5fa4a3b7 100644 --- a/gr-filter/include/filter/pfb_arb_resampler_ccf.h +++ b/gr-filter/include/filter/pfb_arb_resampler_ccf.h @@ -85,8 +85,8 @@ namespace gr { * gain of the filter, which we specify here as the interpolation * rate (<EM>32</EM>). * - * <B><EM>self._taps = gr.firdes.low_pass_2(32, 32*fs, BW, TB, - * attenuation_dB=ATT, window=gr.firdes.WIN_BLACKMAN_hARRIS)</EM></B> + * <B><EM>self._taps = filter.firdes.low_pass_2(32, 32*fs, BW, TB, + * attenuation_dB=ATT, window=filter.firdes.WIN_BLACKMAN_hARRIS)</EM></B> * * The theory behind this block can be found in Chapter 7.5 of * the following book. diff --git a/gr-filter/include/filter/pfb_arb_resampler_fff.h b/gr-filter/include/filter/pfb_arb_resampler_fff.h index 7449ea0cbd..2504c92ec2 100644 --- a/gr-filter/include/filter/pfb_arb_resampler_fff.h +++ b/gr-filter/include/filter/pfb_arb_resampler_fff.h @@ -85,8 +85,8 @@ namespace gr { * gain of the filter, which we specify here as the interpolation * rate (<EM>32</EM>). * - * <B><EM>self._taps = gr.firdes.low_pass_2(32, 32*fs, BW, TB, - * attenuation_dB=ATT, window=gr.firdes.WIN_BLACKMAN_hARRIS)</EM></B> + * <B><EM>self._taps = filter.firdes.low_pass_2(32, 32*fs, BW, TB, + * attenuation_dB=ATT, window=filter.firdes.WIN_BLACKMAN_hARRIS)</EM></B> * * The theory behind this block can be found in Chapter 7.5 of the * following book. diff --git a/gr-filter/include/filter/pfb_channelizer_ccf.h b/gr-filter/include/filter/pfb_channelizer_ccf.h index ba55782b41..7726809f22 100644 --- a/gr-filter/include/filter/pfb_channelizer_ccf.h +++ b/gr-filter/include/filter/pfb_channelizer_ccf.h @@ -81,8 +81,8 @@ namespace gr { * function (a Blackman-harris window in this case). The first input * is the gain of the filter, which we specify here as unity. * - * <B><EM>self._taps = gr.firdes.low_pass_2(1, fs, BW, TB, - * attenuation_dB=ATT, window=gr.firdes.WIN_BLACKMAN_hARRIS)</EM></B> + * <B><EM>self._taps = filter.firdes.low_pass_2(1, fs, BW, TB, + * attenuation_dB=ATT, window=filter.firdes.WIN_BLACKMAN_hARRIS)</EM></B> * * The filter output can also be overs ampled. The over sampling rate * is the ratio of the the actual output sampling rate to the normal diff --git a/gr-filter/include/filter/pfb_decimator_ccf.h b/gr-filter/include/filter/pfb_decimator_ccf.h index e41f16cd2c..9db11b88da 100644 --- a/gr-filter/include/filter/pfb_decimator_ccf.h +++ b/gr-filter/include/filter/pfb_decimator_ccf.h @@ -71,8 +71,8 @@ namespace gr { * input is the gain of the filter, which we specify here as * unity. * - * <B><EM>self._taps = gr.firdes.low_pass_2(1, fs, BW, TB, - * attenuation_dB=ATT, window=gr.firdes.WIN_BLACKMAN_hARRIS)</EM></B> + * <B><EM>self._taps = filter.firdes.low_pass_2(1, fs, BW, TB, + * attenuation_dB=ATT, window=filter.firdes.WIN_BLACKMAN_hARRIS)</EM></B> * * The PFB decimator code takes the taps generated above and * builds a set of filters. The set contains <EM>decim</EM> number diff --git a/gr-filter/include/filter/pfb_interpolator_ccf.h b/gr-filter/include/filter/pfb_interpolator_ccf.h index d32b8b688d..a31ca7129b 100644 --- a/gr-filter/include/filter/pfb_interpolator_ccf.h +++ b/gr-filter/include/filter/pfb_interpolator_ccf.h @@ -59,8 +59,8 @@ namespace gr { * the output levels are the same as the input (this creates an * overall increase in power). * - * <B><EM>self._taps = gr.firdes.low_pass_2(interp, interp*fs, BW, TB, - * attenuation_dB=ATT, window=gr.firdes.WIN_BLACKMAN_hARRIS)</EM></B> + * <B><EM>self._taps = filter.firdes.low_pass_2(interp, interp*fs, BW, TB, + * attenuation_dB=ATT, window=filter.firdes.WIN_BLACKMAN_hARRIS)</EM></B> * * The PFB interpolator code takes the taps generated above and * builds a set of filters. The set contains <EM>interp</EM> diff --git a/gr-filter/include/filter/polyphase_filterbank.h b/gr-filter/include/filter/polyphase_filterbank.h index 50d0873405..33e9522e17 100644 --- a/gr-filter/include/filter/polyphase_filterbank.h +++ b/gr-filter/include/filter/polyphase_filterbank.h @@ -87,8 +87,8 @@ namespace gr { * input is the gain of the filter, which we specify here as * unity. * - * <B><EM>self._taps = gr.firdes.low_pass_2(1, fs, BW, TB, - * attenuation_dB=ATT, window=gr.firdes.WIN_BLACKMAN_hARRIS)</EM></B> + * <B><EM>self._taps = filter.firdes.low_pass_2(1, fs, BW, TB, + * attenuation_dB=ATT, window=filter.firdes.WIN_BLACKMAN_hARRIS)</EM></B> * * More on the theory of polyphase filterbanks can be found in * the following book. |