使用FFTW并评估得到的傅里叶级数

时间:2015-02-20 14:02:21

标签: c++ fft fftw dft

我是FFTW的新手。我想将函数分解为傅里叶级数。到目前为止,我没有设法做到这一点。我的代码如下:

  // 1) Create discretizations for my function 'my_function'
  int N = 100; // number of discretizations
  float x_step = (x_end - x_start) / ((float)(N - 1));
  fftw_complex *Input, *Output;
  fftw_plan my_plan;
  Input = (fftw_complex*)fftw_malloc(sizeof(fftw_complex) * N);
  Output = (fftw_complex*)fftw_malloc(sizeof(fftw_complex) * N);
  float x = x_start;
  ForIndex(i, N) {
    Input[i][0] = my_function(x);
    cout << "Input[" << i << "]=" << Input[i][0] << endl;
    Input[i][1] = 0;
    x += x_step;
  }

  my_plan = fftw_plan_dft_1d(N, Input, Output, FFTW_FORWARD, FFTW_ESTIMATE);

  fftw_execute(my_plan);

  // 3) Evaluation - this is the part I am confused with
  // I should get something very close to 'my_function' when I plot, shouldn't I?
  ForIndex(i, N) {
    float sum = 0;
    float x = (float)i;
    sum = Output[0][0] / 2.0f;
    for (int k = 1; k < N; k++) {
      // Fourier series
      // http://en.wikipedia.org/wiki/Fourier_series
      float s = 2.0f*(float)M_PI * (float)k * x / (float)N;
      sum += Output[k][0] * std::cos(s) + Output[k][1] * std::sin(s);
      // I also tried
      // sum += Output[k][0] * std::sin(s + Output[k][1]);
      // to no avail
    }
    cout << "For x=" << x << ", y=" << (sum / (float)N) << endl;
  }

我得到的结果是假的:当我绘制系列时,我只是得到了摆动的波浪。

有人能给我一个关于如何正确评估最终傅里叶级数的线索吗?

1 个答案:

答案 0 :(得分:1)

你非常接近预期的结果!获得正确输出的两点:

  • 第一项Output是输入信号的平均值。所以它是sum = Output[0][0];,而不是sum = Output[0][0] / 2.0f;
  • i复杂,i*i==-1因此,当虚部加倍时,必须在结果中加上减号。因此:

    sum += Output[k][0] * std::cos(s) - Output[k][1] * std::sin(s);
    

以下是由g++ main.cpp -o main -lfftw3 -lm编译的更正代码:

#include <fftw3.h>
#include <iostream>
#include <cmath>
#include <stdlib.h>

using namespace std;

float my_function(float x){
    return x;
}
int main(int argc, char* argv[]){

    // 1) Create discretizations for my function 'my_function'
    int N = 100; // number of discretizations
    float x_end=1;
    float x_start=0;
    int i;
    float x_step = (x_end - x_start) / ((float)(N - 1));
    fftw_complex *Input, *Output;
    fftw_plan my_plan;
    Input = (fftw_complex*)fftw_malloc(sizeof(fftw_complex) * N);
    Output = (fftw_complex*)fftw_malloc(sizeof(fftw_complex) * N);
    float x = x_start;
    for(i=0;i<N;i++){
        Input[i][0] = my_function(x);
        cout << "Input[" << i << "]=" << Input[i][0] << endl;
        Input[i][1] = 0;
        x += x_step;
    }

    my_plan = fftw_plan_dft_1d(N, Input, Output, FFTW_FORWARD, FFTW_ESTIMATE);

    fftw_execute(my_plan);

    for(i=0;i<N;i++){ 
      printf("%d %g+%gi\n",i,Output[i][0],Output[i][1]);
    }

    // 3) Evaluation - this is the part I am confused with
    // I should get something very close to 'my_function' when I plot, shouldn't I?
    for(i=0;i<N;i++) {
        float sum = 0;
        float x = (float)i;
        sum = Output[0][0];
        for (int k = 1; k < N; k++) {
            // Fourier series
            // http://en.wikipedia.org/wiki/Fourier_series
            float s = 2.0f*(float)M_PI * (float)k * x / (float)N;
            sum += Output[k][0] * std::cos(s) - Output[k][1] * std::sin(s);
            // I also tried
            // sum += Output[k][0] * std::sin(s + Output[k][1]);
            // to no avail
        }
        cout << "For i=" << i <<" x="<<x_start+x_step*i<< " f(x)="<<my_function(x_start+x_step*i)<<" y=" << (sum / (float)N) << endl;
    }

}

我还添加了一些东西来打印傅里叶变换的系数。由于输入是实信号,因此频率系数kN-k是共轭的。从N=100开始,查看频率49和51或48和52。

因此,库fftw为真实到复杂的fftw_plan fftw_plan_dft_r2c_1d()提供了functions dedicated to real inputsfftw_plan fftw_plan_dft_c2r_1d()。实际上有一半的频率((N+1)/2)被存储和计算

要回到现实世界,您可以使用FFTW_BACKWARD的第二个计划:

my_plan2 = fftw_plan_dft_1d(N, Output, input, FFTW_BACKWARD, FFTW_ESTIMATE);