-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstepIBatchForProto.m
More file actions
23 lines (21 loc) · 842 Bytes
/
stepIBatchForProto.m
File metadata and controls
23 lines (21 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
function stepIBatchForProto
%stepIBatchForProto Pipeline setup for step I of study: "An EEG
% Experimental Study Evaluating the Performance of Texas
% Instruments ADS1299."
% In this step data is auto imported for Prototype files.
%
%
% 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 Zero', 'Prototype');
OUTPUT_FOLDER = fullfile(DATA_FOLDER, 'Step I');
%% Start processFolder Function
applyToAllFiles(@batchImportPrototypeData, INPUT_FOLDER, OUTPUT_FOLDER);
end