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

📄 ffttest.h

📁 国外网站找到的
💻 H
字号:
/* * FFTTest.h * * C header for ARM FFT algorithm */#include "../fft/FFT.h"#ifndef FFT_H#define FFT_Htypedef void fFFT(void *input, int N);/* FFT test data type */typedef struct {  int N;        /* number of points in the FFT */  complex *in;   /* complex FFT test input */  complex *out;    /* complex FFT test output */} FFTData;typedef void (*FFTFunction)(complex *, int N);typedef struct {	FFTFunction FFTpoint;	char *FuncName;	int Direction;} FFTTest;#endif

⌨️ 快捷键说明

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