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

📄 lookup.h

📁 This a framework to test new ideas in transmission technology. Actual development is a LDPC-coder in
💻 H
字号:
#ifndef LOOKUP_H__#define LOOKUP_H__//include<math.h>// Put this to 0 to use the original functions#define OPTIMIZE 0//#include<spc.h>// If OPTIMIZE is defined, the lookup-functions are used, else the original// functions are used.#if OPTIMIZE// Lookup-table functions for log and exp.double lookup_exp( double x );double lookup_log( double x );void lookup_init();void lookup_exit();#else#include <math.h>#define lookup_exp exp#define lookup_log log#define lookup_init() {}#define lookup_exit() {}#endif#endif

⌨️ 快捷键说明

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