I am trying to calculate the computational complexity of ifft, I know it’s NlogN for a N*1 dimension, signal. But I have a product of two signals then I want to get ifft, and then calculate the computational complexity. So simply, if X(w) and Q(w) are Fourier transform of two time signal , then what is computational complexity of their product.
Note: X(w) and Q(w) has same (N*1) size.
ifft(X(w)*Q(w))=???

有帮助吗?

解决方案

It is still O(N log N). The ifft doesn't care how you get the data, and the element-wise multiplication is O(N).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top