将 std::complex 与 iPhone 的 vDSP 函数结合使用

发布于 2024-12-06 07:12:32 字数 704 浏览 1 评论 0 原文

我一直在研究一些 vDSP 代码,但遇到了一个恼人的问题。我的代码是跨平台的,因此使用 std::complex 来存储其复杂值。

现在我假设我能够按如下方式设置 FFT:

DSPSplitComplex dspsc;
dspsc.realp = &complexVector.front().real();
dspsc.imagp = &complexVector.front().imag();

然后在适当的 vDSP_fft_* 调用中使用步长 2。

然而这似乎不起作用。我可以通过执行 vDSP_ztoc 来解决这个问题,但这需要临时缓冲区,我真的不想闲逛。有没有办法直接在交错的复杂数据上使用 vDSP_fft_* 函数?还有谁能解释一下为什么我不能像上面那样步幅为 2?

谢谢

编辑: 正如 Bo Persson 所指出的, real 和 imag 函数实际上并不返回引用。

但是,如果我执行以下操作,它仍然不起作用

DSPSplitComplex dspsc;
dspsc.realp = ((float*)&complexVector.front()) + 0;
dspsc.imagp = ((float*)&complexVector.front()) + 1;

所以我原来的问题仍然有效:(

I've been working on some vDSP code and I have come up against an annoying problem. My code is cross platform and hence uses std::complex to store its complex values.

Now I assumed that I would be able to set up an FFT as follows:

DSPSplitComplex dspsc;
dspsc.realp = &complexVector.front().real();
dspsc.imagp = &complexVector.front().imag();

And then use a stride of 2 in the appropriate vDSP_fft_* call.

However this just doesn't seem to work. I can solve the issue by doing a vDSP_ztoc but this requires temporary buffers that I really don't want hanging around. Is there any way to use the vDSP_fft_* functions directly on interleaved complex data? Also can anyone explain why I can't do as I do above with a stride of 2?

Thanks

Edit: As pointed out by Bo Persson the real and imag functions don't actually return a reference.

However it still doesn't work if I do the following instead

DSPSplitComplex dspsc;
dspsc.realp = ((float*)&complexVector.front()) + 0;
dspsc.imagp = ((float*)&complexVector.front()) + 1;

So my original question still does stand :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

难如初 2024-12-13 07:12:32

std::complex 函数 real()imag() 按值返回,它们不返回对complex 成员的引用。

这意味着您无法通过这种方式获取他们的地址。

The std::complex functions real() and imag() return by value, they do not return a reference to the members of complex.

This means that you cannot get their addresses this way.

悲喜皆因你 2024-12-13 07:12:32

这就是你的做法。

const COMPLEX *in = reinterpret_cast(std::complex);

来源:http://www.fftw.org/doc/Complex-numbers.html

编辑:
澄清来源; COMPLEX 和 fftw_complex 使用相同的数据布局(尽管 fftw_complex 使用 double 和 COMPLEX float

This is how you do it.

const COMPLEX *in = reinterpret_cast<const COMPLEX*>(std::complex);

Source: http://www.fftw.org/doc/Complex-numbers.html

EDIT:
To clarify the source; COMPLEX and fftw_complex use the same data layout (although fftw_complex uses double and COMPLEX float)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文