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

📄 upsampling.h

📁 详细的OFDM设计过程
💻 H
字号:

#ifndef INC_UPSAMPLING_H
#define INC_UPSAMPLING_H

//#define INBUFFSIZE 10
//#define UPFACTOR 3
//#define OUTBUFFSIZE 30
void upsampling( short *out, const float *in,  int input_size, int upfactor);
void upsampling2(const float *in, float *out,
 const int input_size, const int upfactor) ;
void downsampling(short *out, short *in,  short output_size, short downfactor);
void downsampling2(short *out, short *in,  short output_size, short downfactor); 
void upsampling3(const float *in, float *out,
 const int input_size, const int upfactor);
#endif //INC_UPSAMPLING_H

⌨️ 快捷键说明

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