代码搜索:FFt 有哪些应用?
找到约 10,000 项符合「FFt 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/167140/9979878
pjt fft.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectName="FFT"
ProjectDir="C:\ti\myprojects\5416dsk\fft\test\"
ProjectType=Executable
CPUFami
www.eeworm.com/read/167140/9979882
obj fft.obj
www.eeworm.com/read/167140/9979883
paf fft.paf
www.eeworm.com/read/167140/9979885
asm fft.asm
*********************************************************************************
* (C) COPYRIGHT TEXAS INSTRUMENTS, INC. 1996 *
**********************************
www.eeworm.com/read/167140/9979895
out fft.out
www.eeworm.com/read/167140/9979918
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/167073/9981076
obj fft.obj
www.eeworm.com/read/167073/9981082
c fft.c
#include "typedef.h"
#include "math.h"
struct compx EE(struct compx b1,struct compx b2)
{
struct compx b3;
b3.real=b1.real*b2.real-b1.imag*b2.imag;
b3.imag=b1.real*b2.imag+b1.imag*b2.real;
re
www.eeworm.com/read/362702/9985244
h fft.h
/*===================================================================
File name : FFT.H
Originator : Digital Control Systems Group
Te
www.eeworm.com/read/362702/9985299