free5GRAN  V1.0
common_matrices.h
Go to the documentation of this file.
1 /*
2  * Copyright 2020 Telecom Paris
3 
4  Licensed under the Apache License, Version 2.0 (the "License");
5  you may not use this file except in compliance with the License.
6  You may obtain a copy of the License at
7 
8  http://www.apache.org/licenses/LICENSE-2.0
9 
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15  */
16 
17 #ifndef FREE5GRAN_COMMON_MATRICES_H
18 #define FREE5GRAN_COMMON_MATRICES_H
19 
20 
21 namespace free5GRAN{
22 
23  /*
24  * Gn matrix and inverse matrix (TS38.212 5.3.1.2)
25  */
26 
27  extern int G5[32][32];
28 
29  extern int G5_INV[32][32];
30 
31 
32  extern int G6[64][64];
33 
34  extern int G6_INV[64][64];
35 
36 
37  extern int G7[128][128];
38 
39  extern int G7_INV[128][128];
40 
41 
42  extern int G8[256][256];
43 
44  extern int G8_INV[256][256];
45 
46 
47  extern int G9[512][512];
48 
49  extern int G9_INV[512][512];
50 
51 
52  extern int G10[1024][1024];
53 
54  extern int G10_INV[1024][1024];
55 
56 }
57 
58 #endif
int G10[1024][1024]
int G8_INV[256][256]
int G7[128][128]
int G10_INV[1024][1024]
int G7_INV[128][128]
int G9[512][512]
int G8[256][256]
int G9_INV[512][512]
int G5_INV[32][32]
int G5[32][32]
int G6_INV[64][64]
int G6[64][64]