view 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 source
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