📄 mctc_subdil.m
字号:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Property of Freescale
% Freescale Confidential Proprietary
% Freescale Copyright (C) 2005 All rights reserved
% ----------------------------------------------------------------------------
% $RCSfile: mCTC_SubDIL.m.rca $
% $Revision: 1.1 $
% $Date: Mon Jan 22 13:32:59 2007 $
% Target: Matlab
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
% Reversed operation of subblock interleaving
%
function y = mCTC_SubDIL(x)
[row, L_total] = size(x);
% address information similar with the transmitter
add = mTx_add_subinter(L_total);
add = add +1;
y = intrlv([x(1,:);x(2,:);x(3,:);x(4,:);x(5,:);x(6,:)]',add);
y = y';
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -