📄 btcstruct.h
字号:
/*
*********************************************************************************
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -