root / grc / blocks / blks2_synthesis_filterbank.xml @ 63c92857
History | View | Annotate | Download (703 Bytes)
| 1 | <?xml version="1.0"?>
|
|---|---|
| 2 | <!--
|
| 3 | ################################################### |
| 4 | ##Synthesis Filterbank |
| 5 | ################################################### |
| 6 | --> |
| 7 | <block>
|
| 8 | <name>Synthesis Filterbank</name> |
| 9 | <key>blks2_synthesis_filterbank</key> |
| 10 | <import>from gnuradio import blks2</import> |
| 11 | <make>blks2.synthesis_filterbank(mpoints=$mpoints, taps=$taps)</make> |
| 12 | <param>
|
| 13 | <name>MPoints</name> |
| 14 | <key>mpoints</key> |
| 15 | <value>3</value> |
| 16 | <type>int</type> |
| 17 | </param>
|
| 18 | <param>
|
| 19 | <name>Taps</name> |
| 20 | <key>taps</key> |
| 21 | <type>complex_vector</type> |
| 22 | </param>
|
| 23 | <sink>
|
| 24 | <name>in</name> |
| 25 | <type>complex</type> |
| 26 | <nports>$mpoints</nports> |
| 27 | </sink>
|
| 28 | <source>
|
| 29 | <name>out</name> |
| 30 | <type>complex</type> |
| 31 | </source>
|
| 32 | </block>
|