You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I learned your manyears project. It's so great!
However, I found that the ifftCompute function may have a little bug.
The 932th line in fft.c file : "destArrayImag[k] = -1.0f * sourceArrayImag[k];" may need to be changed as "sourceArrayImag[k] = -1.0f * sourceArrayImag[k];". In other words, the conjugate operation may be unuseful due to updating destArrayImage instead of sourceArrayImag.
Have a nice day!
The text was updated successfully, but these errors were encountered:
Hi, I learned your manyears project. It's so great!
However, I found that the ifftCompute function may have a little bug.
The 932th line in fft.c file : "destArrayImag[k] = -1.0f * sourceArrayImag[k];" may need to be changed as "sourceArrayImag[k] = -1.0f * sourceArrayImag[k];". In other words, the conjugate operation may be unuseful due to updating destArrayImage instead of sourceArrayImag.
Have a nice day!
The text was updated successfully, but these errors were encountered: