⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bler.h

📁 对ns2软件进行UMTS扩展
💻 H
字号:
#ifndef ns_bler_h#define ns_bler_h#include <stdio.h>class BlerTable {public:	BlerTable();	double getbler(double ebno);	static double table[2][20];	// 1 row: Eb/No		// 2 row: BLER};double BlerTable::table[2][20] = {		{1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0},		{1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0}	};BlerTable::BlerTable() {}double BlerTable::getbler(double ebno) {	int i;	double bler;	bler = 1e38;	for (i=19; i>0; i--) {		if (table[1][i] > ebno) {			bler = table[2][i];		} else {			return bler;		}	}	return bler;}#endif /* __bler_h__ */

⌨️ 快捷键说明

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