代码搜索:matlab fft
找到约 10,000 项符合「matlab fft」的源代码
代码结果 10,000
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
www.eeworm.com/read/279847/10383498
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/424842/10407425
obj fft.obj
www.eeworm.com/read/424842/10407449
sbr fft.sbr
www.eeworm.com/read/161332/10424037
cpp fft.cpp
#include
#include
#include
#include
#include
#include
#include "sound.h"
#include "fft.moc"
#include
extern "C" {
#in