forked from gnuradio/gnuradio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariable_ldpc_encoder_G.xml
77 lines (69 loc) · 1.81 KB
/
variable_ldpc_encoder_G.xml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0"?>
<!--
###################################################
# FEC LDPC ENCODER DEFINITION (VIA GENERATOR)
###################################################
-->
<block>
<name>LDPC Encoder Definition (via Generator)</name>
<key>variable_ldpc_encoder_G_def</key>
<import>from gnuradio import fec</import>
<var_make>
#if int($ndim())==0 #
self.$(id) = $(id) = fec.ldpc_gen_mtrx_encoder_make($G)
#else if int($ndim())==1 #
self.$(id) = $(id) = map((lambda a: fec.ldpc_gen_mtrx_encoder_make($G)), range(0,$dim1)) #slurp
#else
self.$(id) = $(id) = map((lambda b: map((lambda a: fec.ldpc_gen_mtrx_encoder_make($G)), range(0,$dim2))), range(0,$dim1)) #slurp
#end if</var_make>
<make></make>
<param>
<name>Ignore Me</name>
<key>value</key>
<value>"ok"</value>
<type>raw</type>
<hide>all</hide>
</param>
<param>
<name>Parallelism</name>
<key>ndim</key>
<value></value>
<type>enum</type>
<option>
<name>0</name>
<key>0</key>
</option>
<option>
<name>1</name>
<key>1</key>
</option>
<option>
<name>2</name>
<key>2</key>
</option>
</param>
<param>
<name>Dimension 1</name>
<key>dim1</key>
<value>1</value>
<type>int</type>
<hide>#if (int($ndim()) >= 1) then 'none' else 'all' #</hide>
</param>
<param>
<name>Dimension 2</name>
<key>dim2</key>
<value>1</value>
<type>int</type>
<hide>#if (int($ndim()) >= 2) then 'none' else 'all' #</hide>
</param>
<param>
<name>LDPC Generator Matrix</name>
<key>G</key>
<value></value>
<type>raw</type>
</param>
<doc>
Given a generator matrix in systematic form, G = [I|P], where I is the identity matrix and P is the parity submatrix, the information word s is encoded into a codeword x via:
x = G'*s
</doc>
</block>