Just to feed my curiosity, Is the following statement true: FFT (inverse M) = IFFT (M)
Where FFT is the fourier transform, IFFT its inverse, and M a square matrix of any kind (made of natural integers).
Thanks,
Just to feed my curiosity, Is the following statement true: FFT (inverse M) = IFFT (M)
Where FFT is the fourier transform, IFFT its inverse, and M a square matrix of any kind (made of natural integers).
Thanks,
Copyright © 2021 JogjaFile Inc.
It is not true at all. why did you think that it could be in the first place? here is a counterexample from Matlab:
fft([1 1; 2 1])
ans =
ifft([1 1; 2 1]^-1)
ans =