代码搜索:FFt 有哪些应用?
找到约 10,000 项符合「FFt 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/348823/10865532
obj fft.obj
www.eeworm.com/read/348823/10865536
pjt fft.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectName="fft"
ProjectDir="D:\Program Files\ti\myprojects\fft0\"
ProjectType=Executable
CPUFa
www.eeworm.com/read/348823/10865543
out fft.out
www.eeworm.com/read/348823/10865546
cmd fft.cmd
/*fft.cmd*/
fft.obj
-m fft.map
-o fft.out
MEMORY
{
PAGE 0: ROM(RIX) :origin=8000h,length=1000h
ROM1 :origin=9000h,length=0200h
PAGE 1: B2A(RW) :origi
www.eeworm.com/read/348823/10865549
mak fft.mak
/************* Code Composer V1 Project Data ********************
The following section contains data generated by Code Composer
to store project information like build options, source filenames
www.eeworm.com/read/274321/10876327
h fft.h
#include
#include
#include
void FFT(float *X, float *Y)
{
int k, n; // integers for the loops
complex mult; // a complex number
float prod;
www.eeworm.com/read/274170/10886497
c fft.c
#include
#include
#include
#define PI 3.14159265358979323846
struct COMPLEX
{
float re;
float im;
} cplx , * Hfield , * S , * R , * w;
www.eeworm.com/read/419066/10887870
cpp fft.cpp
//#include "fft.h"
#include "Linux_amdf.h"
//#include "define_constants.h"
#include "math.h"
//#ifdef __GNUC__
//void AMDF::DoFFT(float *s, int n,const bool inverted=false) {
//#else
//void
www.eeworm.com/read/419066/10887871
h fft.h
class CFFT { //FFT类
public:
void DoFFT(float *s, int n,const bool inverted=false);
void RealFFT(float *s,int n,const bool inverted=false);
};
www.eeworm.com/read/273812/10900533
cpp fft.cpp
#include
//#include
#include
const double pai=3.141592653589793;
//complex a[8]={complex(1,0),complex(1,0),complex(1,0),complex(1,0),
//complex(1,0),complex(1,