Mercurial > hg > scatter_reeval
diff reeval/features/set_sc1_options.m @ 2:b1cd83874633
Major structural revision. Modular organization of functionalities
author | Francisco Rodriguez Algarra <f.rodriguezalgarra@qmul.ac.uk> |
---|---|
date | Wed, 28 Oct 2015 16:15:47 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/reeval/features/set_sc1_options.m Wed Oct 28 16:15:47 2015 +0000 @@ -0,0 +1,15 @@ +function [sc1_opt] = set_sc1_options(experiment) + + switch(experiment) + + case {'mfcc_740ms', 'time_scat_l1'} + sc1_opt.M = 1; + case {'time_scat_l2', 'time_freq_scat_l2', 'time_freq_scat_l2_adap_q1'} + sc1_opt.M = 2; + case 'time_scat_l3' + sc1_opt.M = 3; + otherwise + error(['Unknown experiment ', experiment, '. Aborting']); + end + +end