문제

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