?? r_decimator.m
字號(hào):
function R_decit=R_Decimator(R_PN_out)
% This is the PN Code Decimator at the Receiver
% The Decimator keeps one out of every 64 chips output from the PN Code Generator
% initialise an empty array to hold the decimated sequence of chips
R_decit1=zeros([1,384]);
% In increments of 64 chips,the PN Code length is 1.2288 Mcps
for i=1:384
R_decit1(i)=R_PN_out(((i-1)*64)+1);
end
R_decit=R_decit1;
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -