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

📄 fftcmplx.h

📁 基于TMS320C5416平台的谱分析程序
💻 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 + -