blob: e6e660392c7df98f9165523165c053ff2e2aa41c (
plain)
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
|
#!/usr/bin/env python
#
# Copyright 2013 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
#
def constellation_map_generator(basis_cpoints, basis_symbols, k, pi):
'''
Uses the a basis constellation provided (e.g., from
psk_constellation.psk_4()) and the the k and permutation index
(pi) to generate a new Gray-coded symbol map to the constellation
points provided in the basis.
The basis_cpoints are the constellation points of the basis
constellation, and basis_symbols are the symbols that correspond
to the constellation points.
The selection of k and pi will provide an automorphism the
hyperoctahedral group of the basis constellation.
This function returns a tuple of (constellation_points,
symbol_map). The constellation_points is a list of the
constellation points in complex space and the symbol_map is a list
of the log2(M)-bit symbols for the constellation points (i.e.,
symbol_map[i] are the bits associated with
constellation_points[i]).
'''
#const_points, s = basis()
const_points = basis_cpoints
s = basis_symbols
symbols = list()
for s_i in s:
tmp = 0
for i,p in enumerate(pi):
bit = (s_i >> i) & 0x1
tmp |= bit << p
symbols.append(tmp ^ k)
return (const_points, symbols)
|