代码搜索:如何学习 FFt?

找到约 10,000 项符合「如何学习 FFt?」的源代码

代码结果 10,000
www.eeworm.com/read/355489/10261898

opt fft.opt

www.eeworm.com/read/355489/10261922

aps fft.aps

www.eeworm.com/read/355489/10261926

h fft.h

// FFT.h : main header file for the FFT application // #if !defined(AFX_FFT_H__62DE3C9D_13C3_4303_97E6_5FF835D775DD__INCLUDED_) #define AFX_FFT_H__62DE3C9D_13C3_4303_97E6_5FF835D775DD__INCLUDED_
www.eeworm.com/read/162730/10278876

txt fft.txt

void FFT(double fr[], double fi[], int n, int flag) { int mp,arg,cntr,p1,p2; int i,j,a,b,k; double sign,pr,pi,harm,t; double* ca=new double[n],*sa=new double[n]; j=0; if(flag!=0) { s
www.eeworm.com/read/280774/10292660

py fft.py

#!/usr/bin/env python2.3 import math import sys import random pi=math.pi e=math.e j=complex(0,1) def fft(f,inv): n=len(f) if n==1: return f for p in 2,3,5: if n%p==0:
www.eeworm.com/read/162411/10307874

wks fft.wks

www.eeworm.com/read/162159/10331674

asm fft.asm

****************************************************************** *** N(8-1024) points FFT Program *** ****************************************************************
www.eeworm.com/read/162159/10331706

cmd fft.cmd

fft.obj -o fft.out -m fft.map -e start MEMORY { PAGE 0: EPROM: org=0E000h, len=1000h VECS : org=0FF80h, len=0080h PAGE 1: SPRAM: org=0060h, len=0020h
www.eeworm.com/read/162091/10336283

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/425498/10350864

c fft.c

/* * * FFT.c * * Based on FFT.cpp from Audacity, which contained the following text: * * This file contains a few FFT routines, including a real-FFT * routine that is almost twice as fa