iPhone Accelerate Framework FFT vs Matlab FFT

后端 未结 3 1766
日久生厌
日久生厌 2020-12-15 11:49

I do not have much math background but part of the project I am working on requires the FFT of a single vector. The matlab function fft(x) works accurately for what I need,

3条回答
  •  囚心锁ツ
    2020-12-15 12:10

    In MATLAB, it looks like you're doing an fft of 16 real values {1+0i, 2+0i, 3+0i, etc...} whereas in Accelerate you're doing an fft of 8 complex values {1+2i, 3+4i, 5+6i, etc...}

提交回复
热议问题