stbc_defines.h

来自「此文件用于仿真MIMO-STBC 系统性能程序」· C头文件 代码 · 共 30 行

H
30
字号
/*  -------- DESCRIPTION :: This file consists of all the structure -------- *//*  --------------------    declarations of the functional modules  -------- */ #ifndef  _SUI_DEFINE_H_#define  _SUI_DEFINE_H_typedef struct {   double real;   double imag;} t_COMPLEX;typedef struct
{
   int psk_1;  /* MPSK signal */
   int psk_2;
   int gen_matrix_1[K_BIT][N_BIT];
   int gen_matrix_2[K_BIT][N_BIT];
   int map_matrix[N_BIT][N_SIG];
   int previous_block[K_BIT];
   t_COMPLEX output_signal_1[NUM_STATES_DEC][NUM_TX_PER_GROUP]; /*group 1, decided by the input*/
   t_COMPLEX output_signal_2[NUM_INPUT_DEC][NUM_TX_PER_GROUP]; /*group 2, decided by the state*/
   double accum_err_metric [NUM_STATES_DEC][2];
   int state_history[NUM_STATES_DEC][NUM_SIGS_PER_FRAME+1];
}t_CONTEXT;
#endif   /* _DEFINE_H_ *//* -------------------- END OF FILE define.h --------------------------------*/

⌨️ 快捷键说明

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