?? t_decimator.m
字號:
function T_decit=T_Decimator(T_PN_out)
%this is the PN Code Decimator at the Transmitter
%the Decimator keeps one out of every 64 chips output from the PN Code Generator
%initialise an empty array to hold the decimator sequence of chips
T_decit1=zeros([1,384]);
%in increments of 64 chips, the PN Code length is 1.2288 Mcps
for i=1:384
T_decit1(i)=T_PN_out(((i-1)*64)+1);
end
T_decit=T_decit1;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -