t_scrambler.m
来自「The result is an IS-95CDMA forward link 」· M 代码 · 共 19 行
M
19 行
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 + =
减小字号Ctrl + -
显示快捷键?