diff options
author | Josh Morman <jmorman@perspectalabs.com> | 2020-12-17 11:10:05 -0500 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2020-12-18 22:36:14 +0100 |
commit | 3207374679508769fa561f5d68db8c916d1fe5ad (patch) | |
tree | a0817455dc7819b02463133c649ca21fd7b39ff2 /docs | |
parent | 96a15f6b0d52f116ee9546be63dce90c4b90238f (diff) |
global replace of filter.firdes.WIN_ with fft.window.WIN_
Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/usage-manual/(exported from wiki) Polyphase Filterbanks.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/usage-manual/(exported from wiki) Polyphase Filterbanks.txt b/docs/usage-manual/(exported from wiki) Polyphase Filterbanks.txt index 1fb8526825..f15235170e 100644 --- a/docs/usage-manual/(exported from wiki) Polyphase Filterbanks.txt +++ b/docs/usage-manual/(exported from wiki) Polyphase Filterbanks.txt @@ -49,7 +49,7 @@ filter that is then split up between the N channels of the PFB. self._M = 9 # Number of channels to channelize self._taps = filter.firdes.low_pass_2(1, self._fs, 475.50, 50, attenuation_dB=100, - window=filter.firdes.WIN_BLACKMAN_hARRIS) + window=fft.window.WIN_BLACKMAN_hARRIS) In this example, the signal into the channelizer is sampled at 9 ksps (complex, so 9 kHz of bandwidth). The filter uses 9 channels, so each |