-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvis_looper_params.m
More file actions
38 lines (28 loc) · 902 Bytes
/
vis_looper_params.m
File metadata and controls
38 lines (28 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
%% Test 1 - one sim planer wave with noise
useH = 2;
sim35WaveR2;
sim35WaveNumLoops;
sim35WaveMapLoopsNum;
sim35WaveMapLoops;
allDelTime = [2 5 7];
allDelCount = [1 2 5 7];
allNN = [6 8 10];
%% One wave
useH = 2;
useN = 1
%number of loops that LOOPER finds
totLoops = squeeze(sim35WaveNumLoops(useH,:,:,useN)) %this is zero - not one
allR2 = squeeze(sim35WaveR2(useH,:,:,useN))
allMapLoops = squeeze(sim35WaveMapLoopsNum(useH,:,:,useN))
%% two waves
useH = 1
useN = 1
%number of loops that LOOPER finds
totLoops = squeeze(twoWaveNumLoops(useH,:,:,useN)) %this is zero - not one
allR2 = squeeze(twoWaveR2(useH,:,:,useN))
allMapLoops = squeeze(twoWaveMapLoopsNum(useH,:,:,useN))
%%
mkdir(dirOut)
save([dirOut, 'simWavesLooper.mat'], 'oneWaveR2','oneWaveNumLoops',...
'oneWaveMapLoopsNum', 'oneWaveMapLoops', 'twoWaveR2',...
'twoWaveNumLoops', 'twoWaveMapLoopsNum', 'twoWaveMapLoops')