代码搜索:如何学习 FFt?
找到约 10,000 项符合「如何学习 FFt?」的源代码
代码结果 10,000
www.eeworm.com/read/296134/7103002
c fft_a.c
/*
fft_a.c - Radix 2 decimation in time FFT
Using C55x C intrinsics to perform in place FFT,
the output overwrite the input array
*/
#include "icomplex.h"
#include
www.eeworm.com/read/296134/7103024
asm fft.asm
;
; fft.asm - Radix-2 complex FFT (for N=2^EXP points)
; Using table lookup method
;
; Prototype: void fft(complex *, int, complex *, int);
;
;
www.eeworm.com/read/249164/7118401
cpp fft.cpp
#include "math.h"
//#include "stdio.h"
#include "fft.h"
//#include "qam64.h"
void ChangeOrder (Int16 *changeDataIn, Int16 length, Int16 pow_4)
{
Int16 i, j, k;
Int16 temp1, temp2;
Int16
www.eeworm.com/read/249164/7118429
h fft.h
#include "typedef.h"
extern Int16 fftWeights[];
//extern
void ChangeOrder(Int16 *changeDataIn, Int16 length, Int16 N);
void fft (Int16 *pFftIn ,
Uint16 fftSize,
Int16 *pWeight
www.eeworm.com/read/267981/7120838
c fft.c
#include
#include
#include
#include "var.h"
void StartFFT()
{
XBYTE[0xbfff]=1;
XBYTE[0xbfff]=0;
}
bit IsFFTFin()
{
if( XBYTE[0xbff]==1)
return 1;
www.eeworm.com/read/267981/7120855
lst fft.lst
C51 COMPILER V8.02 FFT 09/05/2007 11:52:44 PAGE 1
C51 COMPILER V8.02, COMPILATION OF MODULE FFT
OBJECT MODULE PLACED IN fft
www.eeworm.com/read/267981/7120869
obj fft.obj
www.eeworm.com/read/267981/7120877
h fft.h
void Simple();
void SendtoFpga();
void StartFFT();
void GetFFT();
www.eeworm.com/read/464450/7157993
c fft.c
#include "DSP281x_Device.h" // DSP281x Headerfile Include File
#include "DSP281x_Examples.h" // DSP281x Examples Include File
#include "f2812a.h"
#include"math.h"
#define PI 3.1415926
#defi
www.eeworm.com/read/464450/7157995