matlab - Framming Spectrum of WAV file -


im working on spectrum analysis of wav file. have plotting frequency spectrum. want extract feature of spectrum frame frame mean,kurtosis, skewness , others. how framming on spectrum , features in each frame ? code :

[a,fs] = wavread('ori1.wav'); ydft = fft(a); ydft = ydft(1:length(a)/2+1); freq = 0:fs/length(a):fs/2; plot(freq,abs(ydft)); 


Comments

Popular posts from this blog

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -