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

java - BeanIO write annotated class to fixedlength -

Using Java 8 lambdas/transformations to combine and flatten two Maps -

How to connect android app to App engine -