BOOT Startup script for all applications of CGMM estimation - Prints a copyright notice. - Adds all subfolders to the current path so that function files can be called from scripts and functions in different folders. See also PATH. created by Benedikt Rudolph DATE: 16-Aug-2012
0001 %BOOT Startup script for all applications of CGMM estimation 0002 % 0003 % - Prints a copyright notice. 0004 % - Adds all subfolders to the current path so that function files 0005 % can be called from scripts and functions in different folders. 0006 % 0007 % See also PATH. 0008 % 0009 % created by Benedikt Rudolph 0010 % DATE: 16-Aug-2012 0011 0012 disp(repmat('-',1,80)); 0013 disp('Starting up CGMM estimation...'); 0014 disp(strcat('This program has been developed in a research project' ... 0015 , ' at Risklab, Toronto.')); 0016 disp('(c) Benedikt Rudolph, 2013'); 0017 disp(repmat('-',1,80)); 0018 disp(''); 0019 0020 % Add all subfolders to the current path 0021 addpath(genpath(pwd)); 0022 0023 % OCTAVE specific requirements 0024 if exist('OCTAVE_VERSION') 0025 % load package financial for cov2corr 0026 pkg load financial; 0027 end 0028 0029 % create configuration 0030 config;