代码搜索:DSP FFT
找到约 10,000 项符合「DSP FFT」的源代码
代码结果 10,000
www.eeworm.com/read/417378/10992220
plg fft.plg
礦ision3 Build Log
Project:
E:\Work\Keil\fft\fft.uv2
Project File Date: 01/10/2006
Output:
www.eeworm.com/read/417378/10992224
imd fft.imd
www.eeworm.com/read/417378/10992225
ps fft.ps
www.eeworm.com/read/417378/10992229
h fft.h
#ifndef _FFT_H
#include
#define pi 3.14159265
typedef struct
{
double r, i;
} complex;
void fft(int n, complex *a);
#endif
www.eeworm.com/read/417378/10992233
pfi fft.pfi
www.eeworm.com/read/417378/10992235
opt fft.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
www.eeworm.com/read/417378/10992236
pr fft.pr
www.eeworm.com/read/417378/10992241
iab fft.iab
www.eeworm.com/read/270348/11041459
cpp fft.cpp
#include
#include
#include
#define pi 3.1415926
#define N 4
struct Complex
{
double real;
double image;
};
//struct Complex y[N];
struct Complex co
www.eeworm.com/read/270348/11041461
cpp fft.cpp
#include
#include
#include
#define pi 3.1415926
#define N 4
struct Complex
{
double real;
double image;
};
struct Complex comadd(struct Complex a,stru