mctc_subdil.m

来自「OFDMA 物理层开发的matlab 源码.飞思卡尔提供.对物理层开发的工程师有」· M 代码 · 共 26 行

M
26
字号
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%  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 + =
减小字号Ctrl + -
显示快捷键?