-
Notifications
You must be signed in to change notification settings - Fork 18
/
startup.m
35 lines (33 loc) · 1009 Bytes
/
startup.m
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
%########################################################################
%
% - PPGI Toolbox -
% A MATLAB toolbox for Photoplethysmography Imaging (PPGI)
%
% Author : Christian S. Pilz
% Company : The Nature of Space of Time
% Date : 07.05.2019
%
% Contact : cpi@partofthestars.com
% Web Page : www.partofthestars.com
%
% Version : Alpha RA 1.0
%
%########################################################################
%
% startup.m:
%
% Description:
%
% Set all path variables
%
clear all; close all;
[pathstr,~,~] = fileparts(mfilename('fullpath'));
addpath(genpath([pathstr '/lib']));
addpath(genpath([pathstr '/lib/algorithm']));
addpath(genpath([pathstr '/lib/algorithm/features']))
addpath(genpath([pathstr '/lib/algorithm/models']))
addpath(genpath([pathstr '/lib/algorithm/models/diffusion_process']))
addpath(genpath([pathstr '/lib/algorithm/models/stochastic_oscillator']))
addpath(genpath([pathstr '/lib/evaluation']));
addpath(genpath([pathstr '/lib/utils']))
clearvars pathstr;