forked from marlow17/PredictingGroundReactionForces
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.m
More file actions
39 lines (31 loc) · 1.27 KB
/
Copy pathmain.m
File metadata and controls
39 lines (31 loc) · 1.27 KB
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
% Main script accompanying the paper
%
% "Predicting vertical ground reaction forces from 3D accelerometery using
% reservoir computers leads to accurate gait event detection", Margit M
% Bach, Nadia Dominici, and Andreas Daffertshofer. Vrije Universiteit
% Amsterdam
%
% ________________________________________________________________________
%
% This file is released under the terms of the GNU General Public License,
% version 3. See http://www.gnu.org/licenses/gpl.html
%
% ________________________________________________________________________
%% set the Matlab path
addpath(genpath('external'));
addpath('network','analysis','preprocessing','misc');
%-------------------------------------------------------------------------
testDataType='continuous';
run('mainTrainValidateTest.m');
run('makeFigure2.m');
%-------------------------------------------------------------------------
run('mainTrainSizeTest.m');
run('makeFigure3.m');
%-------------------------------------------------------------------------
testDataType='strides';
run('mainTrainValidateTest.m');
run('makeFigureS123.m');
%-------------------------------------------------------------------------
run('makeLMO.m');
run('makeFigureS4.m');
%% _ EOF__________________________________________________________________