7/1-4 快速傅里叶变换FFT的matlab程序以及C++程序

7/1-4 快速傅里叶变换FFT的matlab程序以及C++程序

1.matlab代码

\qquad 用open命令打开fft内置函数后给出的介绍如下:

%FFT Discrete Fourier transform.
%   FFT(X) is the discrete Fourier transform (DFT) of vector X.  For
%   matrices, the FFT operation is applied to each column. For N-D
%   arrays, the FFT operation operates on the first non-singleton
%   dimension.
%
%   FFT(X,N) is the N-point FFT, padded with zeros if X has less
%   than N points and truncated if it has more.
%
%   FFT(X,[],DIM) or FFT(X,N,DIM) applies the FFT operation across the
%   dimension DIM.
%   
%   For length N input vector x, the DFT is a length N vector X,
%   with elements
%                    N
%      X(k) =       sum  x(n)*exp(-j*2*pi*(k-1)*(n-1)/N), 1 <= k <= N.
%                   n=1
%   The inverse DFT (computed by IFFT) is given by
%                    N
%      x(n) = (1/N) sum  X(k)*exp( j*2*pi*(k-1)*(n-1)/N), 1 <= n <= N.
%                   k=1
%
%   See also FFT2, FFTN, FFTSHIFT, FFTW, IFFT, IFFT2, IFFTN.

%   Copyright 1984-2005 The MathWorks, Inc.

%   Built-in function.




现在来对比一下离散傅里叶变换与快速傅里叶变换所需时间:

t=linspace(1,10,100);
 x=sin(t);
 t1=clock;
 y1=fft(x);
 t2=clock;
 etime(t2,t1)

ans =

    0.0090

\qquad 由上述代码得知matlab自带函数fft计算100个信号 ( sin ⁡ ( 0 : 0.01 : 1 ) ) (\sin(0:0.01:1)) (sin(0:0.01:1))所需的时间是 0.009 0.009 0.009秒。

 t=linspace(1,10,100);
 N=length(t);
 x=sin(t);
 t1=clock;
%  y1=fft(x);
 k=0;
 y2=zeros(1,N);
 for i=1:N
     for j=1:N
         k=k+exp(-i*2*pi*i*j/N)*x(j);
         y2(i)=k;
     end
 end
 t2=clock;
 etime(t2,t1)

ans =

    0.0320

\qquad 由上述代码得知DFT计算100个信号 ( sin ⁡ ( 0 : 0.01 : 1 ) ) (\sin(0:0.01:1)) (sin(0:0.01:1))所需的时间是 0.0320 0.0320 0.0320秒。若将计时函数放在第7行,则可省去申请内存的时间,所需时间大约为 0.0150 0.0150 0.0150秒,仍然是比fft慢很多,这仅仅是100个信号,若处理成千上万个信号则用DFT则会慢很多。
\qquad 下面给出FFT的代码:

function f=fftt(x)
N=length(x);
f=zeros(1,N);
for k=1:N/2
    for n=1:N/2
        f(2*k-1)=f(2*k-1)+exp(-1i*2*pi*(2*k-2)*(n-1)/N)*(x(n)+x(n+N/2));
        f(2*k)=f(2*k)+exp(-1i*2*pi*(2*k-1)*(n-1)/N)*(x(n)-x(n+N/2));
    end
end
end

下面对比DFT与FFT计算时间

 t=linspace(0,1,100);
 N=length(t);
 x=sin(t);
 y1=fft(x);
 y2=zeros(1,N);
 t1=clock;
 for k=1:N
     for n=1:N
         y2(k)=y2(k)+exp(-1i*2*pi*(k-1)*(n-1)/N)*x(n);
     end
 end
 t2=clock;
 time1=etime(t2,t1)
 t3=clock;
 y3=fftt(x);
 t4=clock;
 time2=etime(t4,t3)

\qquad 只取100个点会出现如下情况,即用FFT算法不消耗时间,下面改为1000个点,时间如下:

time1 =

    0.2620


time2 =

    0.0940

2.C++代码

#include <iostream>
#include <math.h>
#include <string.h>
using namespace std;
#define pi acos(-1)

int main()
{
    float a[100];
    int N=sizeof(a)/sizeof(a[0]);
    float y[N];
    float f[N];
    for(int l=0;l<N;l++)
    {
        a[l]=sin((float)l/100);
        y[l]=0;
        f[l]=0;
    }
    for(int k=0;k<N/2;k++)
    {
        for(int n=0;n<N/2;n++)
        {
            y[2*k]=y[2*k]+cos(4*k*n*pi/N)*(a[n]+a[n+N/2]);
            y[2*k+1]=y[2*k+1]+(a[n]-a[n+N/2])*cos(2*(2*k+1)*n*pi/N);
        }
    }
    return 0;
}

\qquad 为了省事,我直接将计算中的 e i ω π e^{i\omega\pi} eiωπ定义为 cos ⁡ ( i ω π ) \cos(i\omega\pi) cos(iωπ),舍掉了虚部部分。计算结果与MATLAB相同(实部)。

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值