IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
startup.m
Go to the documentation of this file.
1 %> @ingroup misc introspection
2 %> @file
3 %>@brief Adds all folders to the MATLAB path. This script needs to be run from the IRootLab root folder.
4 
5 d = dir('*');
6 n = {d.name};
7 b = [d.isdir];
8 n(~b) = [];
9 n(strcmp(n, '.') | strcmp(n, '..') | strcmp(n, '.svn')) = [];
10 
11 p = pwd();
12 
13 for i = 1:numel(n)
14  addtopath(fullfile(p, n{i}));
15 end;
16 
19 setup_load();
20 
21 fprintf(['\n', ...
22  '*********************************************************************************************************\n']);
23 fprintf([get_credits, '\n', get_welcome(), '\n', get_cite(), '\n']);
24 global HSC; HSC = 1;
25 
26 clear d n b p i;
function classmap_assert()
function get_credits()
function get_cite(in flagHref)
function addtopath(in directory)
function get_welcome()
function colors_markers()
function setup_load()