-
Notifications
You must be signed in to change notification settings - Fork 14
/
startup.m.template
27 lines (23 loc) · 941 Bytes
/
startup.m.template
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
function startup
% STARTUP Called automatically by Matlab at startup.
% STARTUP gets automatically called by Matlab if it was started from THIS
% directory. STARTUP simply calls SGLIB_STARTUP
%
% Example (<a href="matlab:run_example startup">run</a>)
% startup
%
% See also
% Elmar Zander
% Copyright 2006, Institute of Scientific Computing, TU Braunschweig.
% $Id$
%
% This program is free software: you can redistribute it and/or modify it
% under the terms of the GNU General Public License as published by the
% Free Software Foundation, either version 3 of the License, or (at your
% option) any later version.
% See the GNU General Public License for more details. You should have
% received a copy of the GNU General Public License along with this
% program. If not, see <http://www.gnu.org/licenses/>.
% Adjust the following line as needed
sglib_path='sglib';
run( [sglib_path '/sglib_startup'] );