Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在通过 cufft 进行二维 fft 处理。处理类型是实数到复数,所以输出数组的大小是 NX * (NY / 2 + 1),这是非冗余的。但我需要包含冗余系数的完整系数。我怎样才能得到它们?提前致谢。
将所有实数值转换为复数值。这是微不足道的,只需提供一个零虚值来配合每个实值。
然后进行 cufft C2C(复数到复数)变换,其大小为 NX*NY,在输入端和输出端都有。冗余不会减少。