fftstruc.h

来自「arm ads1.2 with crack.rar」· C头文件 代码 · 共 22 行

H
22
字号
/*
 * Fast Fourier Transform structure definition
 * Copyright (C) ARM Limited 1998-1999. All rights reserved.
 */

#ifndef _FFTSTRUC_
#define _FFTSTRUC_

#ifndef _COMPLEX
#define _COMPLEX

typedef struct 	Complex	Complex ;
typedef 		Complex	*ComplexPtr ;

struct Complex {
	int r ;
	int	i ;
} ;

#endif	/* _COMPLEX   */

#endif	/* _FFTSTRUC_ */

⌨️ 快捷键说明

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