annotate reeval/features/set_filt2_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 |
a1f6a08f624c |
rev |
line source |
f@2
|
1 function [filt2_opt, sc2_opt, ffilt2_opt, fsc2_opt] = ...
|
f@2
|
2 set_filt2_options(experiment, options)
|
f@2
|
3
|
f@2
|
4 filt2_opt = options.filt1_opt;
|
f@2
|
5 filt2_opt.Q = [1 1];
|
f@2
|
6 filt2_opt.J = T_to_J(8192*2, filt2_opt);
|
f@2
|
7
|
f@2
|
8 sc2_opt = options.sc1_opt;
|
f@2
|
9
|
f@2
|
10 ffilt2_opt = options.ffilt1_opt;
|
f@2
|
11 ffilts2_opt.J = 5;
|
f@2
|
12
|
f@2
|
13 fsc2_opt = options.fsc1_opt;
|
f@2
|
14
|
f@2
|
15 end
|
f@2
|
16
|