-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstepIV.m
23 lines (21 loc) · 858 Bytes
/
stepIV.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
function stepIV
%stepIV Pipeline setup for step IV of study: "An EEG Experimental Study
% Evaluating the Performance of Texas Instruments ADS1299."
% In this step extra channels are removed, and latent variables are
% calculated for grand average.
%
%
% Copyright (C) 2018 Usman Rashid
% urashid@aut.ac.nz
%
% This program is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 3 of the License, or
% (at your option) any later version.
%% Constants
DATA_FOLDER = fullfile(pwd, 'Data');
INPUT_FOLDER = fullfile(DATA_FOLDER, 'Step III');
OUTPUT_FOLDER = fullfile(DATA_FOLDER, 'Step IV');
%% Start processFolder Function
processFolder(INPUT_FOLDER, OUTPUT_FOLDER, @procStepIIIFile, @quickViewStepIVFile);
end