代码搜索:FFt 有哪些应用?
找到约 10,000 项符合「FFt 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/362524/9993962
m fft.m
%*************************************************************************%
% FFT实践及频谱分析 %
%****************************************************
www.eeworm.com/read/362520/9994028
txt fft.txt
/*****************fft programe*********************/
*基二FFT算法*/
#include "math.h"
#include "stdio.h"
struct compx
{ double real;
double imag;
} compx ;
struct compx EE(struct com
www.eeworm.com/read/362264/10008570
cpp fft.cpp
/*************************************************************************
* COPYRIGHT 2007 Author:YangTao
* The College of Computer Science
* Beijing University of Technology
* Emails:
www.eeworm.com/read/166650/10009146
asm fft.asm
******************************************************************
*** N(8-1024) points FFT Program ***
****************************************************************
www.eeworm.com/read/166650/10009183
cmd fft.cmd
fft.obj
MEMORY
{
PAGE 0:
EPROM: org=00030h, len=1000h
VECS : org=0FF80h, len=0080h
PAGE 1:
SPRAM: org=0060h, len=0020h
DARAM: org=0100h, len=5
www.eeworm.com/read/166043/10040009
doc fft.doc
www.eeworm.com/read/361557/10047092
asm fft.asm
www.eeworm.com/read/361557/10047099
cmd fft.cmd
fft.obj
-o fft.out
-m fft.map
-e start
MEMORY
{
PAGE 0:
EPROM: org=0E000h, len=1000h
VECS : org=0FF80h, len=0080h
PAGE 1:
SPRAM: org=0060h, len=0020h
www.eeworm.com/read/165863/10048520
c fft.c
/***********************************************************
*
* FFT library. SWUST, rhodesn@163.com
* MAX point is 4096 dot
* 2006-06-24
*********************************************************
www.eeworm.com/read/165863/10048535
h fft.h
#ifndef _DSP_FFT_HEAD
#define _DSP_FFT_HEAD
void DSP_FFT_init(int DotNumber,int iRadix);
void DSP_FFT_core(short *AudioData,short *FftData);
void DSP_FFT_test(short *OutData);
#endif