Global Index (short | long) | Local contents | Local Index (short | long)
This file should be run only at the beginning of the MATLAB session (put it in startup.m) The commands in this file define paths to the your new matlab scripts.
This script is called by | |
---|---|
% Start by defining global variables TRUE and FALSE: % TRUE and FALSE are used very often in Alexis Lau's % scripts global TRUE FALSE TRUE = strcmp('a','a'); FALSE = ~TRUE; % This is for reference. Here is where you can find % Alexis Lau's routines: % % Now, link to Alexis Lau's routines: This directory % may be used later % LAU_PATH = '/home/disk/tao/bantzer/matlab/lau'; % Now, link to the directories that contain the MATLAB % scripts that will be used in this tutorial: NEW_PATH = '/home/disk/tao/dvimont/matlab/Wallace'; path( [ NEW_PATH '/Redefined_Fncs' ], path); path( [ NEW_PATH '/Utility_Tools' ], path); path( [ NEW_PATH '/NaN_Tools' ], path); path( [ NEW_PATH '/Math_Tools' ], path); path( [ NEW_PATH '/IO_Tools' ], path); path( [ NEW_PATH '/Graphics_Tools' ], path); path( [ NEW_PATH '/Map_Tools' ], path); % Feel free to add paths, keeping in mind that MATLAB % uses the first occurance of a specific function, as % found in your path.