-
Notifications
You must be signed in to change notification settings - Fork 0
/
LTE_SSS_5.m
73 lines (61 loc) · 1.97 KB
/
LTE_SSS_5.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
%buğrahan serttaş
%subframe 5'deki SSS değerleri içindir
%SSS indis değerlerinden sonra gerçekleşir
function SSS_subfram5 = LTE_SSS_5(enb)
slot_num = 10;
x = enb.NCellID;
n_id_1 = [];
n_id_2 = [];
for b = 1:2 % b değerleri aralığı için bir döngü başlatın, -100 ve 100 isteğe bağlı olarak değiştirilebilir.
a = (x - b) / 3;
if mod(a, 1) == 0 && mod(b, 1) == 0 % eğer a tam sayıysa ve a ve b pozitif sayılar ise
n_id_1 = [n_id_1 a]; % a değerlerini sakla
n_id_2 = [n_id_2 b]; % b değerlerini sakla
end
end
% s=sss(n_id_1,n_id_2,slot_num);
%
% Return the sss for slot slot_num for the specified n_id_1 and n_id_2.
%
% s is of length 62 and only includes the non-zero subcarriers. The calling
% Calculate m0 and m1 from n_id_1
qp=floor(n_id_1/30);
q=floor((n_id_1+qp*(qp+1)/2)/30);
mp=n_id_1+q*(q+1)/2;
m0=mod(mp,31);
m1=mod(m0+floor(mp/31)+1,31);
%s_td=[0 0 0 0 1];
%for t=1:26
% s_td=[s_td mod(s_td(end-2)+s_td(end-4),2)];
%end
s_td=[0 0 0 0 1 0 0 1 0 1 1 0 0 1 1 1 1 1 0 0 0 1 1 0 1 1 1 0 1 0 1];
s_td=1-2*s_td;
%c_td=[0 0 0 0 1];
%for t=1:26
% c_td=[c_td mod(c_td(end-1)+c_td(end-4),2)];
%end
c_td=[0 0 0 0 1 0 1 0 1 1 1 0 1 1 0 0 0 1 1 1 1 1 0 0 1 1 0 1 0 0 1];
c_td=1-2*c_td;
%z_td=[0 0 0 0 1];
%for t=1:26
% z_td=[z_td mod(z_td(end)+z_td(end-2)+z_td(end-3)+z_td(end-4),2)];
%end
z_td=[0 0 0 0 1 1 1 0 0 1 1 0 1 1 1 1 1 0 1 0 0 0 1 0 0 1 0 1 0 1 1];
z_td=1-2*z_td;
s0_m0=s_td(mod(m0:30+m0,31)+1);
s1_m1=s_td(mod(m1:30+m1,31)+1);
c0=c_td(mod(n_id_2:30+n_id_2,31)+1);
c1=c_td(mod(n_id_2+3:30+n_id_2+3,31)+1);
z1_m0=z_td(mod((0:30)+mod(m0,8),31)+1);
z1_m1=z_td(mod((0:30)+mod(m1,8),31)+1);
if (slot_num==0)
SSS_subfram0(2:2:62)=s1_m1.*c1.*z1_m0;
SSS_subfram0(1:2:62)=s0_m0.*c0;
elseif (slot_num==10)
SSS_subfram5(2:2:62)=s0_m0.*c1.*z1_m1;
SSS_subfram5(1:2:62)=s1_m1.*c0;
SSS_subfram5 = transpose(SSS_subfram5);
else
error('Check code...');
end
end