?? dft.h
字號(hào):
/*
* dft.h - discrete fourier transformation definitions
*
* Copyright (C) lartely <luda@hitwh.edu.cn>
*
*/
#include "complex.h"
#include <math.h>
#include <malloc.h>
#ifndef _DFT_DOT_H_
#define _DFT_DOT_H_
class CDFT{
private:
static void DFT_MAIN (complex *, complex *,int);
static void IDFT_MAIN(complex *, complex *,int);
public:
static void DFT (double *,complex *,int);
static void IDFT (complex *,double *,int);
};
#endif
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -