Mercurial > hg > scatter_reeval
view reeval/features/set_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 [options] = set_options(experiment) % filter 1 options options.filt1_opt = set_filt1_options(experiment); options.sc1_opt = set_sc1_options(experiment); % frequency filter 1 options freq_filt_exps = {'time_freq_scat_l2', 'time_freq_scat_l2_adap_q1'}; if(length(find(ismember(... freq_filt_exps, experiment))) ~= 0) [options.ffilt1_opt, options.fsc1_opt] = ... set_ffilt1_options(experiment); end % secondary filters options sec_filt_exps = {'time_freq_scat_l2_adap_q1'}; if(length(find(ismember(... sec_filt_exps, experiment))) ~= 0) [options.filt2_opt, options.sc2_opt, ... options.ffilt2_opt, options.fsc2_opt] = ... set_filt2_options(experiment, options); end end