代码搜索:FFt 有哪些应用?
找到约 10,000 项符合「FFt 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/186172/8955595
map fft.map
******************************************************************************
TMS320C54x COFF Linker PC v4.1.0
*******************************************************
www.eeworm.com/read/186172/8955603
pjt fft.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectName="fft"
ProjectDir="E:\CCStudio_v3.1\MyProjects\exp2004\chap7\75_fft\"
ProjectType=Exec
www.eeworm.com/read/186067/8963178
paf fft.paf
www.eeworm.com/read/186067/8963202
asm fft.asm
***********************************************
* 作者:熊先越 *
* Email: xianyuexiong@163.com *
* *
* DIT,FFT programe *
* filename: fft.a
www.eeworm.com/read/186067/8963211
pjt fft.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectName="fft"
ProjectDir="C:\TIEval21\myprojects\fft\"
ProjectType=Executable
CPUFamily=TMS3
www.eeworm.com/read/427207/8966183
h fft.h
//fft.h complex FFT function taken from Rulph's C31 book
//this file contains definition of complex dat structure also
struct cmpx //complex data structure used by FFT
{
www.eeworm.com/read/185949/8971259
h fft.h
#ifndef NTL_FFT__H
#define NTL_FFT__H
#include
#include
NTL_OPEN_NNS
#define NTL_FFTFudge (4)
// This constant is used in selecting the correct
// number o
www.eeworm.com/read/426899/8992501
asm fft.asm
*
*
*2.4 kbps MELP Proposed Federal Standard speech coder
*
*TMS320C5x assembly code
*
*version 1.0
*
*Copyright (c) 1998, Texas Instruments, Inc.
*
*Texas Instruments has intellectual p
www.eeworm.com/read/283587/9004153
c fft.c
/*
* FFT/IFFT transforms
* Copyright (c) 2002 Fabrice Bellard.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* Li
www.eeworm.com/read/426674/9005585
c fft.c
//FFT.c C callable FFT function in C
#define PTS 256 //# of points for FFT
typedef struct {float real,imag;} COMPLEX;
extern COMPLEX w[PTS]; //twiddle constants stored in w
v