代码搜索:FFt 有哪些应用?
找到约 10,000 项符合「FFt 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/246151/12753525
cpp fft.cpp
/**********************************************************************
FFT.cpp
Dominic Mazzoni
September 2000
This file contains a few FFT routines, including a real-FFT
routine that is
www.eeworm.com/read/246151/12753528
h fft.h
/**********************************************************************
FFT.h
Dominic Mazzoni
September 2000
This file contains a few FFT routines, including a real-FFT
routine that is a
www.eeworm.com/read/332446/12757482
c fft.c
#include "fft.h"
FFT32C fft=FFT32C_DEFAULTS;
/*************************************************************************
文件名: FFT(signed int data_in[N])
日期: 2007年2月25日
公司(作者):
描述和说明: 3
www.eeworm.com/read/332446/12757513
h fft.h
/*************************************************************************
文件名: fft.h
日期: 2007年2月25日
公司(作者):
描述和说明: FFT 头文件
**************************************************************
www.eeworm.com/read/245490/12798304
asm fft.asm
.mmregs
.ref bit_rev,unpack,fft,power,find
.def fft_data,sine,cosine,MAIN
K_FFT_SIZE .set 512 ; # of complex points (=N)
K_LOGN .set 9 ; # of stages (=logN/log2)
K_ZERO_BK
www.eeworm.com/read/245490/12798306
cmd fft.cmd
-E MAIN
MEMORY {
PAGE 0:
PARAM: org = 3000h len = 4000h
PAGE 1:
STACK: org = 0200h len=200h
SINE: o
www.eeworm.com/read/331439/12828587
m fft.m
function Y = fft(X)
% FFT Discrete Quaternion Fourier transform.
% (Quaternion overloading of standard Matlab function, but only one parameter.)
% (The parameters N and dim of the standard function ar
www.eeworm.com/read/331331/12833494
dev fft.dev
[Project]
FileName=FFT.dev
Name=FFT
UnitCount=1
Type=1
Ver=1
ObjFiles=
Includes=
Libs=
PrivateResource=
ResourceIncludes=
MakeIncludes=
Compiler=
CppCompiler=
Linker=
IsCpp=0
Icon=
Ex
www.eeworm.com/read/331331/12833497
c fft.c
/*****************fft programe*********************/
/*混合基FFT算法*/
//by SC07023029 吕娴娜
#include "math.h"
#include "stdio.h"
struct compx
{ double real;
double imag;
} compx ;
struct
www.eeworm.com/read/331331/12833498