load_cb

PURPOSE ^

LOAD_CB is the callback file that loads available information from files.

SYNOPSIS ^

This is a script file.

DESCRIPTION ^

 LOAD_CB is the callback file that loads available information from files.

 LOAD_CB loads files previously saved in the current directory.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 % LOAD_CB is the callback file that loads available information from files.
0002 %
0003 % LOAD_CB loads files previously saved in the current directory.
0004 
0005 if exist('.\LaserScans.mat','file')
0006     disp('Loading LaserScans.mat');
0007     load .\LaserScans.mat;
0008 end
0009 if exist('.\CalibPoints.mat','file')
0010     disp('Loading CalibPoints.mat');
0011     load CalibPoints.mat;
0012 end
0013 if exist('.\AutoClstrs.mat','file')
0014     disp('Loading AutoClstrs.mat');
0015     load .\AutoClstrs.mat;
0016 end
0017 if exist('.\ManClstrs.mat','file')
0018     disp('Loading ManClstrs.mat');
0019     load .\ManClstrs.mat
0020 end
0021 if exist('.\LaserCalibResults.mat','file');
0022     disp('Loading LaserCalibResults.mat');
0023     load .\LaserCalibResults.mat;
0024 end

Generated on Thu 08-Apr-2010 14:35:09 by m2html © 2005