Is there a way to compute for the complex conjugate, given an array with complex elements?
I have an array consisting of imaginary elements using fast Fourier transform (fft.fft) and would like to return a list with the complex conjugate of each element.
I was thinking of extracting the imaginary bits by using nparray.imag, but it creates a list without "j" to denote imaginary.
Any help will be appreciated.