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))=???
Asked
Active
Viewed 2,624 times
3

SAH
- 190
- 2
- 14
-
4Should be on programmers stackexchange – Daniel Mann Nov 16 '13 at 18:41
1 Answers
3
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).

Evan
- 2,217
- 15
- 18
-
thanks mate. I was thinking same, but I had doubt lol. anywat im not into programming so much. @evan – SAH Nov 16 '13 at 18:49