Skip to content

Commit

Permalink
add startup file
Browse files Browse the repository at this point in the history
  • Loading branch information
gamaleldin committed Jan 10, 2017
1 parent be09349 commit cfd3f1c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions startup.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% <TME>
% Copyright (C) 2017 Gamaleldin F. Elsayed and John P. Cunningham
% (see full notice in README)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This is a startup file which initializes Matlab's settings to
% allow for better use of this package.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
path(sprintf('%s/genTME', pwd), path) % Adds the subdirectories of the root folder to the path, allowing us to call functions from them.
path(sprintf('%s/util', pwd), path) % Adds the subdirectories of the root folder to the path, allowing us to call functions from them.
path(sprintf('%s/util/lbfgsb', pwd), path) % Adds the subdirectories of the root folder to the path, allowing us to call functions from them.
path(sprintf('%s/test', pwd), path) % Adds the subdirectories of the root folder to the path, allowing us to call functions from them.
path(sprintf('%s/data', pwd), path) % Adds the subdirectories of the root folder to the path, allowing us to call functions from them.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%This simply clears all variables and closes all windows opened by Matlab.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
close all
clear all

0 comments on commit cfd3f1c

Please sign in to comment.