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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -