📄 t_scrambler.m
字号:
function T_scrambled=T_Scrambler(T_decit,int_matrix)
%This is the Data Scrambler at the transmitter
%Let me tell you a bit of what the Data Scrambler does.
%The Data Scrambler perform modulo2 addition of the decimated PN Long Code
%(19.2kbps) with the data bits coming out from interleaver
%initialise a vector for holding the Scrambled data chips stream
T_scrambled1=zeros([1,384]);
for i=1:384
T_scrambled1(i)=mod((T_decit(i)+int_matrix(i)),2);
end
T_scrambled=T_scrambled1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -