annotate 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
rev   line source
f@2 1 function [sc1_opt] = set_sc1_options(experiment)
f@2 2
f@2 3 switch(experiment)
f@2 4
f@2 5 case {'mfcc_740ms', 'time_scat_l1'}
f@2 6 sc1_opt.M = 1;
f@2 7 case {'time_scat_l2', 'time_freq_scat_l2', 'time_freq_scat_l2_adap_q1'}
f@2 8 sc1_opt.M = 2;
f@2 9 case 'time_scat_l3'
f@2 10 sc1_opt.M = 3;
f@2 11 otherwise
f@2 12 error(['Unknown experiment ', experiment, '. Aborting']);
f@2 13 end
f@2 14
f@2 15 end