代码搜索:FFt 有哪些应用?
找到约 10,000 项符合「FFt 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/382392/9032216
c fft.c
#include "math.h"
#include "stdio.h"
int N=16;
int r=4;
int i,j=1,k=0,l,m,a,b,c;
float R1,R2,I1,I2,pi=3.1415926;
float x_real[16];
www.eeworm.com/read/382392/9032219
mak fft.mak
/************* Code Composer V1 Project Data ********************
The following section contains data generated by Code Composer
to store project information like build options, source filenames
www.eeworm.com/read/382392/9032223
cmd fft.cmd
-c
-h
-m FFT.map
-o FFT.out
FFT.obj
-l rts.lib
-stack 0x100
MEMORY
{
PAGE 0: PROG: origin = 1a00h, length = 2600h
PAGE 1: DATA: origin = 0200h, length = 1800h
www.eeworm.com/read/382267/9040153
c fft.c
#include
#include
#include
#define pi (double) 3.14159265359
/*复数定义*/
typedef struct
{
double re;
double im;
}COMPLEX;
/*复数加法运算*/
COMPLEX Add(COMPLEX
www.eeworm.com/read/185240/9048306
lib fft.lib
www.eeworm.com/read/185240/9048313
h fft.h
/*===================================================================
File name : FFT.H
Originator : Digital Control Systems Group
Te
www.eeworm.com/read/282963/9050640
doc fft.doc
www.eeworm.com/read/382086/9050715
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
www.eeworm.com/read/381960/9060647
c fft.c
/*
* FAAC - Freeware Advanced Audio Coder
* Copyright (C) 2001 Menno Bakker
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser Ge
www.eeworm.com/read/381805/9070703
pjt fft.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="D:\newdone\c6713Ae(3.1)\Lab0503-FFT\"
ProjectType=Executable
CPUFamily=TMS320C67XX
T