forked from MWSL-UnB/HERMES
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addHermesPaths.m
24 lines (23 loc) · 898 Bytes
/
addHermesPaths.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
function addHermesPaths( parameterPath )
%ADDHERMESPATHS adds the simulation folders to Matlab path.
% addHermesPaths( parameterPath )
% adds all the paths containing source files and the parameter files,
% which is defined in 'parameterPath'
%
% Author: Erika Portela Lopes de Almeida, André Noll Barreto
% Work Address: INDT Brasília
% E-mail: [email protected], [email protected]
% History:
% 5 Feb 2015 - created
% 27 Mar 2015 - parameter path added
%
% Copyright (c) 2015 INDT - Institute of Technology Development.
%
% The program may be used and/or copied only with the written
% permission of INDT, or in accordance with the terms and conditions
% stipulated in the agreement/contract under which the program has been
% supplied.
% add simulator main path
hermesPath = pwd;
addpath( genpath( hermesPath ) );
addpath( parameterPath );