-
Notifications
You must be signed in to change notification settings - Fork 62
/
decimator.lua
44 lines (37 loc) · 1.62 KB
/
decimator.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
-- Decimate a complex or real valued signal. This block band-limits and
-- downsamples the input signal. It reduces the sample rate for downstream
-- blocks in the flow graph by a factor of M.
--
-- $$ y[n] = (x * h_{lpf})[nM] $$
--
-- @category Sample Rate Manipulation
-- @block DecimatorBlock
-- @tparam int decimation Downsampling factor M
-- @tparam[opt={}] table options Additional options, specifying:
-- * `num_taps` (int, default 128)
-- * `window` (string, default "hamming")
--
-- @signature in:ComplexFloat32 > out:ComplexFloat32
-- @signature in:Float32 > out:Float32
--
-- @usage
-- -- Decimate by 5
-- local decimator = radio.DecimatorBlock(5)
local block = require('radio.core.block')
local types = require('radio.types')
local blocks = require('radio.blocks')
local DecimatorBlock = block.factory("DecimatorBlock", blocks.CompositeBlock)
function DecimatorBlock:instantiate(decimation, options)
blocks.CompositeBlock.instantiate(self)
assert(decimation, "Missing argument #1 (decimation)")
options = options or {}
local filter = blocks.LowpassFilterBlock(options.num_taps or 128, 1/decimation, 1.0, options.window)
local downsampler = blocks.DownsamplerBlock(decimation)
self:connect(filter, downsampler)
self:add_type_signature({block.Input("in", types.ComplexFloat32)}, {block.Output("out", types.ComplexFloat32)})
self:add_type_signature({block.Input("in", types.Float32)}, {block.Output("out", types.Float32)})
self:connect(self, "in", filter, "in")
self:connect(self, "out", downsampler, "out")
end
return DecimatorBlock