📄 fftcmplx.h
字号:
/*****************************************************************************/
/* */
/* FILENAME */
/* fftcmplx.h */
/* */
/* DESCRIPTION */
/* Header file for variable with real and imaginary parts. */
/* */
/* REVISION */
/* Revision: 1.00 */
/* Author : Richard Sikora */
/*---------------------------------------------------------------------------*/
/* */
/* HISTORY */
/* Revision 1.00 */
/* 17th October 2002. Created by Richard Sikora */
/* */
/*****************************************************************************/
#ifndef FFT_COMPLEX_H
#define FFT_COMPLEX_H
struct cmpx {
int real;
int imag;
} ;
typedef struct cmpx COMPLEX;
void FFT(COMPLEX *Y, int N);
#endif
/*****************************************************************************/
/* End of ffcmplx.h */
/*****************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -