代码搜索:matlab fft
找到约 10,000 项符合「matlab fft」的源代码
代码结果 10,000
www.eeworm.com/read/457222/7331528
asm fft.asm
;
; fft.asm - Radix-2 complex FFT (for N=2^EXP points)
; Using table lookup method
;
; Prototype: void fft(complex *, int, complex *, int);
;
;
www.eeworm.com/read/456386/7350116
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/454378/7392839
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/452497/7439098
obj fft.obj
www.eeworm.com/read/452497/7439126
obj fft.obj
www.eeworm.com/read/451448/7463628
m fft.m
function Y_FFT=FFT(Y_Noncycle)
%MIMO情况下的FFT
%经过并串转换后的,即表示为每条天线上数据的形式
%与X_SVD对应
[row,column,antenna_Rx]=size(Y_Noncycle);
for i=1:antenna_Rx
Y_FFT_P(:,:,i)=fftofdm(Y_Noncycle(:,:,i));
end
www.eeworm.com/read/451027/7473456
h fft.h
/*===================================================================
File name : FFT.H
Originator : Digital Control Systems Group
Te
www.eeworm.com/read/451027/7473491
lib fft.lib
www.eeworm.com/read/451027/7473517
h fft.h
/*===================================================================
File name : FFT.H
Originator : Digital Control Systems Group
Te
www.eeworm.com/read/451027/7473552