forked from jain-shobhit/SSMTool
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinstall.m
31 lines (18 loc) · 814 Bytes
/
install.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
function install
% run this file first to install all external packages and
% also the main software appropriately
maindir = fileparts(mfilename('fullpath'));
extdir = 'ext';
cocoinstall = fullfile(maindir, extdir , 'coco','startup.m');
run(cocoinstall);
addpath(fullfile(maindir, extdir,'combinator'));
addpath(fullfile(maindir, extdir, 'tensor_toolbox'));
addpath(genpath(fullfile(maindir, extdir, 'YetAnotherFEcode','src')));
addpath(genpath(fullfile(maindir, extdir, 'YetAnotherFEcode','examples')));
addpath(genpath(fullfile(maindir, extdir, 'torus_collocation','toolbox')));
addpath(fullfile(maindir, extdir, 'Wrappers'));
addpath(fullfile(maindir, 'src'));
addpath(fullfile(maindir, 'src','misc'));
addpath(fullfile(maindir, 'src','multiindex'));
addpath(fullfile(maindir, 'src', 'frc'));
end