diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-06 15:37:15 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-06 15:46:00 -0500 |
commit | 9ac143a654bc581d9a74363fc02e1ad30be93138 (patch) | |
tree | 537c7d57f2dd2f676011099429383b000af752ab /docs/doxygen | |
parent | cf2c954ba4fc54909515f8550fd55741c9603a11 (diff) |
core: cleaning up remez and firdes in gnuradio-core; now in gr-filter.
Diffstat (limited to 'docs/doxygen')
-rw-r--r-- | docs/doxygen/other/pfb_intro.dox | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/doxygen/other/pfb_intro.dox b/docs/doxygen/other/pfb_intro.dox index 504ae87b87..1ef0c38f6d 100644 --- a/docs/doxygen/other/pfb_intro.dox +++ b/docs/doxygen/other/pfb_intro.dox @@ -30,9 +30,9 @@ filter that is then split up between the \p N channels of the PFB. self._fs = 9000 # input sample rate self._M = 9 # Number of channels to channelize - self._taps = gr.firdes.low_pass_2(1, self._fs, 475.50, 50, - attenuation_dB=100, - window=gr.firdes.WIN_BLACKMAN_hARRIS) + self._taps = filter.firdes.low_pass_2(1, self._fs, 475.50, 50, + attenuation_dB=100, + window=filter.firdes.WIN_BLACKMAN_hARRIS) \endcode In this example, the signal into the channelizer is sampled at 9 ksps |