?? 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 + -