代码搜索:如何学习 FFt?

找到约 10,000 项符合「如何学习 FFt?」的源代码

代码结果 10,000
www.eeworm.com/read/169909/9833240

mak fft.mak

# Generated by the VisualDSP++ IDDE # Note: Any changes made to this Makefile will be lost the next time the # matching project file is loaded into the IDDE. If you wish to preserve # changes,
www.eeworm.com/read/169909/9833243

dpj fft.dpj

www.eeworm.com/read/169808/9837364

ldf fft.ldf

/**************************************************************************** ** $TITLE: FFT.LDF$ ** FFT.LDF ** --------- ** Sets up the memory map for the FFT demo. **
www.eeworm.com/read/169808/9837370

c fft.c

/**************************************************************************** ** $TITLE: FFT.C$ ** FFT.C ** --------- ** Brings data in from the codec, and runs it through
www.eeworm.com/read/169808/9837371

dpj fft.dpj

ADSP-21
www.eeworm.com/read/169808/9837375

mak fft.mak

# Generated by the VisualDSP++ IDDE # Note: Any changes made to this Makefile will be lost the next time the # matching project file is loaded into the IDDE. If you wish to preserve # changes,
www.eeworm.com/read/169808/9837376

pcf fft.pcf

www.eeworm.com/read/169721/9845120

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/169666/9847006

cpp fft.cpp

#include "dip.h" void TDipWindow::add(COMPLEX *a,COMPLEX *b,COMPLEX *ret) { ret->re = a->re + b->re; ret->im = a->im + b->im; } void TDipWindow::sub(COMPLEX *a,COMPLEX *b,COMPLEX *ret) {
www.eeworm.com/read/365533/9857997

cpp fft.cpp

/********************************************************************** FFT.cpp Dominic Mazzoni September 2000 This file contains a few FFT routines, including a real-FFT routine that is