clear; load handel; Y=y(1:65536); subplot(3,2,1),plot(Y),axis tight subplot(3,2,2),plot(abs(fft(Y))),axis tight X=Y(1:2:length(Y)); subplot(3,2,3),plot(X),axis tight subplot(3,2,4),plot(abs(fft(X))),axis tight Z=interpft(X,length(Y));subplot(3,2,5),plot(Z),axis tight subplot(3,2,6),plot(abs(fft(Z))),axis tight