Está en la página 1de 1

>> clear all

>> x=wavread('C:\Users\OHE\Downloads\audio.wav');
>> plot(x);
>> Y=fft(x);
>> A=Y.*conj(Y);
>> f=(1000:3000);
>> plot(f,A(1:2901))
??? Error using ==> plot
Vectors must be the same lengths.

>> f=(100:3000);
>> plot(f,A(1:2901))
>>

También podría gustarte