├── .gitignore ├── LICENSE ├── README.md ├── html ├── build_doc.py ├── msf_filterbank.html ├── msf_framesig.html ├── msf_lar.html ├── msf_logfb.html ├── msf_lpc.html ├── msf_lpcc.html ├── msf_lsf.html ├── msf_mfcc.html ├── msf_powspec.html ├── msf_rc.html ├── msf_ssc.html └── publishcode.m ├── msf_filterbank.m ├── msf_framesig.m ├── msf_lar.m ├── msf_logfb.m ├── msf_lpc.m ├── msf_lpcc.m ├── msf_lsf.m ├── msf_mfcc.m ├── msf_powspec.m ├── msf_rc.m └── msf_ssc.m /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/README.md -------------------------------------------------------------------------------- /html/build_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/build_doc.py -------------------------------------------------------------------------------- /html/msf_filterbank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/msf_filterbank.html -------------------------------------------------------------------------------- /html/msf_framesig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/msf_framesig.html -------------------------------------------------------------------------------- /html/msf_lar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/msf_lar.html -------------------------------------------------------------------------------- /html/msf_logfb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/msf_logfb.html -------------------------------------------------------------------------------- /html/msf_lpc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/msf_lpc.html -------------------------------------------------------------------------------- /html/msf_lpcc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/msf_lpcc.html -------------------------------------------------------------------------------- /html/msf_lsf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/msf_lsf.html -------------------------------------------------------------------------------- /html/msf_mfcc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/msf_mfcc.html -------------------------------------------------------------------------------- /html/msf_powspec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/msf_powspec.html -------------------------------------------------------------------------------- /html/msf_rc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/msf_rc.html -------------------------------------------------------------------------------- /html/msf_ssc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/msf_ssc.html -------------------------------------------------------------------------------- /html/publishcode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/html/publishcode.m -------------------------------------------------------------------------------- /msf_filterbank.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/msf_filterbank.m -------------------------------------------------------------------------------- /msf_framesig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/msf_framesig.m -------------------------------------------------------------------------------- /msf_lar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/msf_lar.m -------------------------------------------------------------------------------- /msf_logfb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/msf_logfb.m -------------------------------------------------------------------------------- /msf_lpc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/msf_lpc.m -------------------------------------------------------------------------------- /msf_lpcc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/msf_lpcc.m -------------------------------------------------------------------------------- /msf_lsf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/msf_lsf.m -------------------------------------------------------------------------------- /msf_mfcc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/msf_mfcc.m -------------------------------------------------------------------------------- /msf_powspec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/msf_powspec.m -------------------------------------------------------------------------------- /msf_rc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/msf_rc.m -------------------------------------------------------------------------------- /msf_ssc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslyons/matlab_speech_features/HEAD/msf_ssc.m --------------------------------------------------------------------------------