-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_decode_map.m
52 lines (40 loc) · 1.98 KB
/
get_decode_map.m
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
chipMapStd = ...
[1 1 0 1 1 0 0 1 1 1 0 0 0 0 1 1 0 1 0 1 0 0 1 0 0 0 1 0 1 1 1 0;
1 1 1 0 1 1 0 1 1 0 0 1 1 1 0 0 0 0 1 1 0 1 0 1 0 0 1 0 0 0 1 0;
0 0 1 0 1 1 1 0 1 1 0 1 1 0 0 1 1 1 0 0 0 0 1 1 0 1 0 1 0 0 1 0;
0 0 1 0 0 0 1 0 1 1 1 0 1 1 0 1 1 0 0 1 1 1 0 0 0 0 1 1 0 1 0 1;
0 1 0 1 0 0 1 0 0 0 1 0 1 1 1 0 1 1 0 1 1 0 0 1 1 1 0 0 0 0 1 1;
0 0 1 1 0 1 0 1 0 0 1 0 0 0 1 0 1 1 1 0 1 1 0 1 1 0 0 1 1 1 0 0;
1 1 0 0 0 0 1 1 0 1 0 1 0 0 1 0 0 0 1 0 1 1 1 0 1 1 0 1 1 0 0 1;
1 0 0 1 1 1 0 0 0 0 1 1 0 1 0 1 0 0 1 0 0 0 1 0 1 1 1 0 1 1 0 1;
1 0 0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 1 1 1 0 1 1 1 1 0 1 1;
1 0 1 1 1 0 0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 1 1 1 0 1 1 1;
0 1 1 1 1 0 1 1 1 0 0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 1 1 1;
0 1 1 1 0 1 1 1 1 0 1 1 1 0 0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 0 0 0;
0 0 0 0 0 1 1 1 0 1 1 1 1 0 1 1 1 0 0 0 1 1 0 0 1 0 0 1 0 1 1 0;
0 1 1 0 0 0 0 0 0 1 1 1 0 1 1 1 1 0 1 1 1 0 0 0 1 1 0 0 1 0 0 1;
1 0 0 1 0 1 1 0 0 0 0 0 0 1 1 1 0 1 1 1 1 0 1 1 1 0 0 0 1 1 0 0;
1 1 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 1 1 1 0 1 1 1 1 0 1 1 1 0 0 0];
OSR = 20;
pulse = sin(0:pi / OSR:(OSR - 1) * pi / OSR);
chipMapPhase = zeros(16, size(chipMapStd - 1, 2));
for ithSym = 1:1:16
chips = chipMapStd(ithSym, :);
oddChips = chips(1:2:end) * 2 - 1;
evenChips = chips(2:2:end) * 2 - 1;
filteredReal = pulse' * oddChips; % each column is now a filtered pulse
filteredImag = pulse' * evenChips; % each column is now a filtered pulse
re = [filteredReal(:); zeros(round(OSR / 2), 1)];
im = [zeros(round(OSR / 2), 1); filteredImag(:)];
idealWave = complex(re, im);
samp = idealWave(1:(OSR / 2):end, 1);
for ithSamp = 2:1:length(samp)
phase = angle(samp(ithSamp, 1) .* samp(ithSamp - 1, 1)');
if phase > 0
chipMapPhase(ithSym, ithSamp - 1) = 1;
else
chipMapPhase(ithSym, ithSamp - 1) = 0;
end
end
phase = angle(samp(1:1:length(samp)-1, 1) .* samp(2:1:length(samp) - 1, 1)');
end