Re: [Numpy-discussion] IRFFT of sound

2021-01-24 Thread Matthieu Brucher
Hi, You need the angle to restore the sound. Otherwise you don't get the phase information. Just store the angle information and apply it? Cheers, Matthieu Le dim. 24 janv. 2021 à 14:27, a écrit : > > Hello friends! > Maybe that's not directly a Numpy question but I think it can be solved by

[Numpy-discussion] IRFFT of sound

2021-01-24 Thread klark--kent
Hello friends!Maybe that's not directly a Numpy question but I think it can be solved by Numpy.I do RFFT of microphone sound and find its absolute value np.abs(). Than I need to do IRFFT but I don't know how to restore sinusoida after np.abs(). I can't not to use 'abs'. I need it in my code. Is the