Mercurial > hg > scatter_reeval
annotate reeval/features/set_filt2_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 |
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@4 | 11 ffilt2_opt.J = 5; |
f@2 | 12 |
f@2 | 13 fsc2_opt = options.fsc1_opt; |
f@2 | 14 |
f@2 | 15 end |
f@2 | 16 |