Pregunta

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))=???

¿Fue útil?

Solución

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).

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top