代码搜索:matlab fft
找到约 10,000 项符合「matlab fft」的源代码
代码结果 10,000
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
lib fft.lib
www.eeworm.com/read/362524/9993962
m fft.m
%*************************************************************************%
% FFT实践及频谱分析 %
%****************************************************
www.eeworm.com/read/362520/9994028
txt fft.txt
/*****************fft programe*********************/
*基二FFT算法*/
#include "math.h"
#include "stdio.h"
struct compx
{ double real;
double imag;
} compx ;
struct compx EE(struct com
www.eeworm.com/read/362264/10008570
cpp fft.cpp
/*************************************************************************
* COPYRIGHT 2007 Author:YangTao
* The College of Computer Science
* Beijing University of Technology
* Emails:
www.eeworm.com/read/166650/10009146
asm fft.asm
******************************************************************
*** N(8-1024) points FFT Program ***
****************************************************************
www.eeworm.com/read/166650/10009183
cmd fft.cmd
fft.obj
MEMORY
{
PAGE 0:
EPROM: org=00030h, len=1000h
VECS : org=0FF80h, len=0080h
PAGE 1:
SPRAM: org=0060h, len=0020h
DARAM: org=0100h, len=5
www.eeworm.com/read/166043/10040009