-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstartup.m
36 lines (25 loc) · 911 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
36
function startup()
% STARTUP starts this project
%% File information
% Author: Philipp Tempel <philipp.tempel@isw.uni-stuttgart.de>
% Date: 2018-05-16
% Changelog:
% 2018-05-16
% * Move the installation of the plot styles to a separate file
% 2018-05-14
% * Add installation of plot styles to MATLAB's `prefdir()/ExportSetup`
% directory
% 2018-04-29
% * Move all path definitions to `pathdef.m`
% 2017-03-12
% * Initial release
%% Do your code magic here
% Set random number generator to a set or pre-defined options
setrng()
% Copy all plotstyles if they need to be copied
copy_plotstyles();
end
%------------- END OF CODE --------------
% Please send suggestions for improvement of this file to the original author as
% can be found in the header Your contribution towards improving this function
% will be acknowledged in the "Changes" section of the header