-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathGenSymbolMap.m
More file actions
161 lines (152 loc) · 2.73 KB
/
GenSymbolMap.m
File metadata and controls
161 lines (152 loc) · 2.73 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
% GenSymbolMap.m
% Constellation mapping according to 3GPP TS 36.211
SymbolMapQPSK = [
1+1j*1;
1+1j*-1;
-1+1j*1;
-1+1j*-1;
]/sqrt(2);
SymbolMapOQPSK = [
1+1j*1;
1+1j*-1;
-1+1j*1;
-1+1j*-1;
];
SymbolMap16QAM = [
1+1j*1;
1+1j*3;
3+1j*1;
3+1j*3;
1+1j*-1;
1+1j*-3;
3+1j*-1;
3+1j*-3;
-1+1j*1;
-1+1j*3;
-3+1j*1;
-3+1j*3;
-1+1j*-1;
-1+1j*-3;
-3+1j*-1;
-3+1j*-3;
]/sqrt(10);
SymbolMap64QAM = [
3+1j*3 ;
3+1j*1 ;
1+1j*3 ;
1+1j*1 ;
3+1j*5 ;
3+1j*7 ;
1+1j*5 ;
1+1j*7 ;
5+1j*3 ;
5+1j*1 ;
7+1j*3 ;
7+1j*1 ;
5+1j*5 ;
5+1j*7 ;
7+1j*5 ;
7+1j*7 ;
3+1j*-3;
3+1j*-1;
1+1j*-3;
1+1j*-1;
3+1j*-5;
3+1j*-7;
1+1j*-5;
1+1j*-7;
5+1j*-3;
5+1j*-1;
7+1j*-3;
7+1j*-1;
5+1j*-5;
5+1j*-7;
7+1j*-5;
7+1j*-7;
-3+1j*3;
-3+1j*1;
-1+1j*3;
-1+1j*1;
-3+1j*5;
-3+1j*7;
-1+1j*5;
-1+1j*7;
-5+1j*3;
-5+1j*1;
-7+1j*3;
-7+1j*1;
-5+1j*5;
-5+1j*7;
-7+1j*5;
-7+1j*7;
-3+1j*-3;
-3+1j*-1;
-1+1j*-3;
-1+1j*-1;
-3+1j*-5;
-3+1j*-7;
-1+1j*-5;
-1+1j*-7;
-5+1j*-3;
-5+1j*-1;
-7+1j*-3;
-7+1j*-1;
-5+1j*-5;
-5+1j*-7;
-7+1j*-5;
-7+1j*-7;
]/sqrt(42);
% figure(1)
% clf
% plot(SymbolMapOQPSK, '.', 'markerSize', 25)
% hold on
% for idx = 1:length(SymbolMapOQPSK)
% str = sprintf('%s', dec2bin(idx - 1, 2));
% text(real(SymbolMapOQPSK(idx))+0.05, imag(SymbolMapOQPSK(idx)), str);
% end
% title('OQPSK modulation mapping')
% xlim([-1.5, 1.5])
% ylim([-1.5, 1.5])
% grid on
% rmsOQPSK = rms(SymbolMapOQPSK)
%
% figure(2)
% clf
% plot(SymbolMap16QAM, '.', 'markerSize', 25)
% hold on
% for idx = 1:length(SymbolMap16QAM)
% str = sprintf('%s', dec2bin(idx - 1, 4));
% text(real(SymbolMap16QAM(idx))+0.05, imag(SymbolMap16QAM(idx)), str);
% end
% title('16QAM modulation mapping')
% xlim([-1.5, 1.5])
% ylim([-1.5, 1.5])
% grid on
% rms16QAM = rms(SymbolMap16QAM)
%
% figure(3)
% clf
% plot(SymbolMap64QAM, '.', 'markerSize', 25)
% hold on
% for idx = 1:length(SymbolMap64QAM)
% str = sprintf('%d', idx - 1);
% text(real(SymbolMap64QAM(idx)), imag(SymbolMap64QAM(idx))-0.1, str);
% end
% title('64QAM modulation mapping')
% xlim([-1.5, 1.5])
% ylim([-1.5, 1.5])
% grid on
% rms64QAM = rms(SymbolMap64QAM)
% figure(4)
% clf
% plot(SymbolMapQPSK, '.', 'markerSize', 25)
% hold on
% for idx = 1:length(SymbolMapQPSK)
% str = sprintf('%s', dec2bin(idx - 1, 2));
% text(real(SymbolMapQPSK(idx))+0.05, imag(SymbolMapQPSK(idx)), str);
% end
% title('QPSK modulation mapping')
% xlim([-1.5, 1.5])
% ylim([-1.5, 1.5])
% grid on
% rmsOQPSK = rms(SymbolMapQPSK)