- % 本程序用来产生即时码
- % 需要输入即时码的相位值
- % 此处相位值是相对于5808=N的
- function PNOut = PN2Generator(inputcode,phaseIndex,N)
- for loop_N=1:N
- %查找对应的码片值
- PNcode_index=fix(phaseIndex/N*1023 + loop_N/N*1023);
- PNcode_index=mod(PNcode_index,1023)+1;
- PNOut(loop_N)=inputcode(PNcode_index);
- end