phase

How to add a phase shift to a sin wave in the frequency domain with fft?

How to add a phase shift to a sin wave in the frequency domain with fft? Question: I want to shift a sine wave in the frequency domain My idea is the following: Fourier-Transform Add a phase shift of pi in frequency domain Inverse-Fourier-Transform In code: t=np.arange(0, 6 , 0.001) values = A*np.sin(t) ft_values= np.fft.fft(values) …

Total answers: 2