ffttest.h

来自「国外网站找到的」· C头文件 代码 · 共 30 行

H
30
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?