view reeval/features/set_sc1_options.m @ 4:a1f6a08f624c tip

Completed version 0.0.2
author Francisco Rodriguez Algarra <f.rodriguezalgarra@qmul.ac.uk>
date Tue, 03 Nov 2015 21:24:41 +0000
parents b1cd83874633
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