Statistics
| Branch: | Tag: | Revision:

root / gr-filter / grc / pfb_decimator.xml @ 5365daf7

History | View | Annotate | Download (880 Bytes)

1
<?xml version="1.0"?>
2
<!--
3
###################################################
4
##Polyphase Decimator
5
###################################################
6
 -->
7
<block>
8
        <name>Polyphase Decimator</name>
9
        <key>pfb_decimator_ccf</key>
10
        <import>from gnuradio import filter</import>
11
        <import>from gnuradio.filter import firdes</import>
12
        <make>filter.pfb.decimator_ccf(
13
          $decim,
14
          $taps,
15
          $channel)
16
        </make>
17
           <callback>set_taps($taps)</callback>
18
        <param>
19
                <name>Decimation</name>
20
                <key>decim</key>
21
                <type>int</type>
22
        </param>
23
        <param>
24
                <name>Taps</name>
25
                <key>taps</key>
26
                <value>None</value>
27
                <type>real_vector</type>
28
        </param>
29
        <param>
30
                <name>Output Channel</name>
31
                <key>channel</key>
32
                <value>0</value>
33
                <type>int</type>
34
        </param>
35
        <sink>
36
                <name>in</name>
37
                <type>complex</type>
38
        </sink>
39
        <source>
40
                <name>out</name>
41
                <type>complex</type>
42
        </source>
43
</block>