Documentation of link_toolboxes


Global Index (all files) (short | long) | Local Index (files in subdir) (short | long)


Help text

  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.

Cross-Reference Information

This script is called by

Listing of script link_toolboxes



%  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:

  HOME = getenv('HOME');
  NEW_PATH = [HOME '/matlab'];
  
  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 '/General_Tools'       ], path);
  path( [ NEW_PATH '/Stat_Tools'       ], path);
  path( [ NEW_PATH '/Graphics_Tools' ], path);
  path( [ NEW_PATH '/Map_Tools' ], path);

%  path( [ NEW_PATH '/Models' ], path);

%  Feel free to add paths, keeping in mind that MATLAB
%  uses the first occurance of a specific function, as
%  found in your path.