-
Notifications
You must be signed in to change notification settings - Fork 85
/
run_me_first.m
42 lines (31 loc) · 859 Bytes
/
run_me_first.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
36
37
38
39
40
% Add folders to path.
addpath(pwd);
cd sgd_solver/;
addpath(genpath(pwd));
cd ..;
cd problem/;
addpath(genpath(pwd));
cd ..;
cd tool/;
addpath(genpath(pwd));
cd ..;
cd plotter/;
addpath(genpath(pwd));
cd ..;
cd sgd_test/;
addpath(genpath(pwd));
cd ..;
% for GDLibrary
cd gd_solver/;
addpath(genpath(pwd));
cd ..;
cd gd_test/;
addpath(genpath(pwd));
cd ..;
[version, release_date] = sgdlibrary_version();
fprintf('##########################################################\n');
fprintf('### ###\n');
fprintf('### Welcome to SGDLibrary ###\n');
fprintf('### (version:%s, released:%s) ###\n', version, release_date);
fprintf('### ###\n');
fprintf('##########################################################\n');