代码搜索:FFt 开发教程
找到约 10,000 项符合「FFt 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/283277/9031743
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/382392/9032188
pjt fft.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="E:\dsp6106\FFT\"
ProjectType=Executable
CPUFamily=TMS320C54XX
Tool="Compiler"
Tool=
www.eeworm.com/read/382392/9032189
obj fft.obj
www.eeworm.com/read/382392/9032198
map fft.map
******************************************************************************
TMS320C54x COFF Linker PC Version 3.70
******************************************************
www.eeworm.com/read/382392/9032200
paf fft.paf
www.eeworm.com/read/382392/9032209
out fft.out
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