代码搜索:DSP FFT
找到约 10,000 项符合「DSP FFT」的源代码
代码结果 10,000
www.eeworm.com/read/459327/7277115
v fft.v
`timescale 1ns/10ps
`include "fft_module\cf_fft_1024_8.v"
module fft(
clock_c,
enable_i,
reset_i,
sync_i,
data_0_i,
data_1_i,
www.eeworm.com/read/459327/7277142
pss fft.pss
|
563c6c66504b704ebacb97707aa5ce55
cf_fft_1024_8:fft2
e796156b1de075a81d68341ae8ac9a
cf_fft_1024_8:fft2|cf_fft_1024_8_1:s1
e796156b1de075a81d68341ae8ac9a
cf_fft_1024_8:fft2|cf_fft_1024_8_1:s1|cf
www.eeworm.com/read/459327/7277193
dbp fft.dbp
www.eeworm.com/read/459327/7277207
psp fft.psp
www.eeworm.com/read/459327/7277219
qsf fft.qsf
# Copyright (C) 1991-2007 Altera Corporation
# Your use of Altera Corporation's design tools, logic functions
# and other software and tools, and its AMPP partner logic
# functions, and any outpu
www.eeworm.com/read/458270/7299940
c fft.c
#include "xparameters.h"
#include "math.h"
#include "xtmrctr.h"
#include "xintc.h"
#define MAX 128
int m =0;
int n =MAX;
double rin[MAX]; // Real part of input
dou
www.eeworm.com/read/457758/7317995
c fft.c
#include "myapp.h"
#include "ICETEK-VC5509-EDU.h"
#include "scancode.h"
#include
#define PI 3.1415926
#define SAMPLENUMBER 128
void InitForFFT();
void MakeWave();
int INPUT[SAMP
www.eeworm.com/read/457222/7331517
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/457222/7331528
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);
;
;