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

📄 mod_tab.h

📁 完整的OFDM系统,含Matlab仿真代码和DSP源代码下载.平台Tms320C6000.含项目说明文档.绝对高质量的源代码.
💻 H
字号:
//mod_tab.h
//
// Project Red 2002: High Performance OFDM Modem 
// Against Channel Imperfections
// Auther: Linus Falk

//tabell f鰎 2PSK (0,1)
static short PSK_2_TABLE[2] = {-9,9};

//tabell f鰎 4QAM (0,1)
//static short QAM_4_TABLE[2] = {-1,1}; //original
static short QAM_4_TABLE[2] = {-9,9};

//tabell f鰎 16QAM (00,01,10,11)
//static short QAM_16_TABLE[4] = {-1,-3,1,3}; //orginal
static short QAM_16_TABLE[4] = {-4,-12,4,12};

//tabell f鰎 64QAM (000,001,010,011,100,101,110,111)
//static short QAM_64_TABLE[8] = {-7,-1,-5,-3,3,1,5,7};
static short QAM_64_TABLE[8] = {-14,-2,-10,-6,6,2,10,14};

//tabell f鰎 256QAM (0000,0001,0010,0011,0100,0101,0110,0111,1000,1001,...,1111)
static short QAM_256_TABLE[16] = {-11,-9,-13,-15,-5,-7,-3,-1,5,7,3,1,11,9,13,15};



⌨️ 快捷键说明

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