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 37 38 39 40 41 42 43
|
function startup()
% Remembers a previously set startup directory to set the directory, invoke startd. E.g.,
% sd=cd % Set sd to the current directory
% startd(sd)
%
% Copyright (C) 1997-2012 Tao Zha
%
% This 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.
%
% It is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% If you did not received a copy of the GNU General Public License
% with this software, see <http://www.gnu.org/licenses/>.
%
%----------------------------------
%path(path,'d:\Program Files\MATLAB\R2007a\work\cstz')
%path(path,'c:\softwdisk\matlabr12\toolbox\cstz\cmexfiles\csminwelfinal\csminwelmex')
%path(path,'C:\ZhaData\TZCcode')
%path(path,'C:\Program Files\Intel\MKL\ia32\lib')
%path(path,'C:\Program Files\Intel\MKL\include')
%path(path,'d:\matlabr12\toolbox\cstz\lzpaper2')
%path(path,'d:\matlabr12\toolbox\cstz\rvarcode')
%path(path,'C:\Program Files\MATLAB\R2006b\work\cstz')
path(path,'/Users/tzha/ZhaData/Git/TZcode/MatlabFiles')
path(path,'/Users/tzha/ZhaData/Git/TZcode/MatlabFiles/MSV')
if exist('startdir0.mat')==2
load /Users/tzha/ZhaData/Git/TZcode/MatlabFiles/startdir0
cd(sd)
end
format compact
fn_reset_ini_seed(0); %Reset the random seed to clockcycle. Can be reoverwritten by fn_reset_ini_seed(number);
|