0

我正在开发一个应用程序。它测量设备的运动。(xyz方向)

现在我必须使用 fftw 过滤数据。

我不知道如何通过 fftw 调用数据。下面是我尝试执行 X 数据的代码的一部分(我在每个方向上工作,所以 X、Y 和 Z)

// X 数据的 FFTW

        int SIZE = 97;
        fftw_complex   *dataX, *fft_resultX;
        fftw_plan       plan_X;
        int             i ;
        dataX       = (fftw_complex*) fftw_malloc(sizeof(fftw_complex) * SIZE);
        fft_resultX  = (fftw_complex*) fftw_malloc(sizeof(fftw_complex) * SIZE);
        plan_X  = fftw_plan_dft_1d(SIZE, dataX, fft_resultX,
                                         FFTW_FORWARD, FFTW_ESTIMATE); // FFTW_MEASURE
        for( i = 0 ; i < SIZE ; i++ ) {
            dataX[i][0] = 1.0; // real
            dataX[i][1] = 0.0; // complex 
        for( i = 0 ; i < SIZE ; i++ ) {
            fprintf( stdout, "dataX[%d] = { %2.2f, %2.2f }\n",
                    i, dataX[i][0], dataX[i][1] );
        }
        
        fftw_execute( plan_X);
        
        for( i = 0 ; i < SIZE ; i++ ) {
            fprintf( stdout, "fft_resultX[%d] = { %2.2f, %2.2f }\n",
                    i, fft_resultX[i][0], fft_resultX[i][1] );
        }

hier 是 userAcceleration:

        [[weakSelf.graphViews objectAtIndex:kDeviceMotionGraphTypeUserAcceleration] addX:deviceMotion.userAcceleration.x y:deviceMotion.userAcceleration.y z:deviceMotion.userAcceleration.z];

例如,当我写作时:

dataX= deviceMotion.userAcceleration.x;

我收到此错误:

从不兼容的类型'double'分配给'fftw_complex *'(又名'_Complex double *')

知道如何让 fftw 工作吗?

感谢每次尝试

4

1 回答 1

0

您不能简单地将真实数据转换为真实的虚数对。每个复数由 2 个双精度数组成。

您需要将所有加速度数据存储到一个更大的数组(例如 256 个条目)中,其中 x 值分配给复数的实部,而 0 分配给虚部。

于 2014-05-18T04:53:03.127 回答