clear; load handel; Y=y(1:65536); FX=fft(Y);FX(16384:49154)=0;X=ifft(FX); subplot(3,2,1),plot(real(X)),axis tight subplot(3,2,2),plot(abs(FX)),axis tight W=X(1:2:65536); FW=fft(W); subplot(3,2,3),plot(real(W)),axis tight subplot(3,2,4),plot(abs(FW)),axis tight Z=interpft(W,65536); FZ=fft(Z); subplot(3,2,5),plot(real(Z)),axis tight subplot(3,2,6),plot(abs(FZ)),axis tight