Recent content by Eng_Pat

  1. E

    Phase shift in frequency domain

    Thank you for your answers. I din't reliaze that so the right code for MATLAB is this: Shifted real part = re.*cos(2*pi*nk/N*samples_delay)+im.*sin(2*pi*nk/N*samples_delay) Shifted imaginary part = re.*sin(2*pi*nk/N*samples_delay)+im.*cos(2*pi*nk/N*samples_delay) It's working right now. Thank...
  2. E

    Phase shift in frequency domain

    Hello, I'using Matlab to simulate phase shift in frequency domain (FD). I have got real and imaginary parts of the signal after FFT. I'd like to use phase shift in FD. This works: Y=fft(y); YY=Y.exp(-i*2*pi*nk/N*samples_delay); result=ifft(YY); But in my DSP I can't use the formula above and...
Back
Top