代码搜索:DSP FFT
找到约 10,000 项符合「DSP FFT」的源代码
代码结果 10,000
www.eeworm.com/read/433447/7929239
sbr fft.sbr
www.eeworm.com/read/433447/7929256
cpp fft.cpp
//#include "stdafx.h"
#include
#include < stdio.h>
#define pi 3.14159265358979323846
typedef struct COMPX
{
float real;
float imag;
}COMPX;
COMPX EE(COMPX b1,COMPX b2)
{
COM
www.eeworm.com/read/433447/7929261
plg fft.plg
Build Log
--------------------Configuration: fft - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~1\
www.eeworm.com/read/433447/7929267
obj fft.obj
www.eeworm.com/read/433447/7929269
ilk fft.ilk
www.eeworm.com/read/433447/7929272
pdb fft.pdb
www.eeworm.com/read/433447/7929273
exe fft.exe
www.eeworm.com/read/433447/7929279
pch fft.pch
www.eeworm.com/read/433428/7930659
cpp fft.cpp
#include "stdafx.h"
#include
#include < stdio.h>
#include "fft.h"
#define pi 3.14159265358979323846
COMPX EE(COMPX b1,COMPX b2)
{
COMPX b3;
b3.real=b1.real*b2.real-b1.imag*b2.imag
www.eeworm.com/read/433428/7930677
h fft.h
#if !defined(FFTFUNC_H_H_H)
#define FFTFUNC_H_H_H
typedef struct COMPX
{
float real;
float imag;
}COMPX;
COMPX EE(COMPX,COMPX);
void FFT(COMPX *,int N);
void sine_generate(COMPX *,i