chase.h

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

H
29
字号
#ifndef CHASE_H
#define CHASE_H

/*
*********************************************************************************
*                               INCLUDE FILES
*********************************************************************************
*/
#include "BTCstruct.h"
/*
*********************************************************************************
* NAME:		Chase
* PURPOSE:	perform the chase algorithm.
*
* Input:	reliable[]:  the reliable value for a line block code.
*			flag : 0 :row sequence; 1 :column sequence.
*			beta : parameter for iteration.
*				
* Output:	hard_seq[]: hard decision sequence output.
*			soft_out[]: soft value output.
*					
* AUTHOR: 	Zhang Tao	2007-02-14	
* 
*********************************************************************************
*/
void Chase(double reliable[],int flag,double beta,BTCstruct BTC,int hard_seq[],
		   double soft_out[]);

#endif

⌨️ 快捷键说明

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