fftcmplx.h

来自「基于TMS320C5416平台的谱分析程序」· C头文件 代码 · 共 41 行

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