btcstruct.h

来自「wimax802.16e中的BTC编码仿真程序」· C头文件 代码 · 共 33 行

H
33
字号
/*
*********************************************************************************
* Copyright (c) National Mobile Communications Research Laboratory. 
* All rights reserved.
* 
* FILE NAME : BTCstruct.h
* ABSTRUCT:
*	This file defines the struct for BTC.
*	
* AUTHOR:	Zhang Tao	2007-02-12
*
*********************************************************************************
*/
#ifndef BTCSTRUCT_H
#define BTCSTRUCT_H

typedef struct
{
	int kx;		//the information bit in the row.
	int ky;		//the information bit in the column.
	int nx;		//the code length in the row.
	int ny;     //the code length in the column.
	int Ix;		//the zero number in a row.
	int Iy;		//the zero number in a column.
	int B;		
	int Q;
	int r_type; //the row code type.
	int c_type; //the column code type.
				//type 0:(8,7),1:(16,15),2:(32,31),3:(16,11),4:(32,26),5:(64,57).
	int msg_len; //message length in a block.
} BTCstruct;

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?