📄 mctc_ildil.m
字号:
function [inputA,inputB] = mCTC_ILDIL(Nep,x_sysA,x_sysB)
%CTC_IL
% For decoder two: interleave the systematic bits
for j = 1:Nep/2
if (mod(j,2)==0) % updated for std compliancy
tmp = x_sysB(j);% switch the couple
x_sysB(j) = x_sysA(j);
x_sysA(j) = tmp;
end
end
% Interleaved address for CTC interleaver, similar with the transmitter
alpha = mTx_add_inter (Nep/2);
for j = 1:Nep/2 % updated for std compliancy
inputA(j) = x_sysA(alpha(j)+1);
inputB(j) = x_sysB(alpha(j)+1);
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -