?? 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;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -