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

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

firemonkey - How do I make a beep sound in Android using Delphi and the API? -