0001 function expdoc()
0002
0003
0004
0005
0006
0007 disp(' ');
0008 disp(' Utilities dedicated to ARGUS Files (''.exp'' extension)');
0009 disp(' expboxgen: creates a domain outline box for a .tif image for the mosaic tiff');
0010 disp(' usage: expboxgen(x0,y0,nx,ny,parameter_filename,box_filename)');
0011 disp(' x0,y0 and nx,ny are the cropping coordinates (upper left and lower right corners in the larger tiff image)');
0012 disp(' paramter_filename is the parameter file name for the mosaic tiff image. box_filename is self explanatory.');
0013 disp(' expconcatenate: display all the profiles present in an Argus file and merge them accordingly to the tips selected by the user')
0014 disp(' usage: expconcatenate(newfile,oldfile)')
0015 disp(' expcreatecircle: creates a closed Argus contour centered on (x,y), of radius radius_length. The contour is made of N points');
0016 disp(' usage: expcreatecircle(filename,x0,y0,radius_length,N)');
0017 disp(' expcreatecontour: creates a closed Argus contour delimited by the ''clicks'' of the user');
0018 disp(' usage: expcreatecontour(filename)');
0019 disp(' expcreateprofile: creates an Argus profile delimited by the ''clicks'' of the user');
0020 disp(' usage: expcreateprofile(filename)');
0021 disp(' expcut: display the contents of an Argus file and allow the user cut the profiles');
0022 disp(' usage: expcut(newfilename,oldfilename)');
0023 disp(' expdisp: display the contents of an Argus file');
0024 disp(' usage: expdisp(filename,[figure number],[line style])');
0025 disp(' expgen: creates an Argus file from a contour (x,y) and a flag indicating if the contour must be closed or open');
0026 disp(' usage: expgen(filename,contours,close_flag)');
0027 disp(' explink: takes a domain outline made of various segments, and links them together in one domain outline. Use expview to see end result');
0028 disp(' usage: explink(domainoutline,minthreshold,step)');
0029 disp(' expmaster: allows the user to create, close, merge, remove,... Argus files and save the result in newfile');
0030 disp(' usage: expmaster(newfile,[oldfile1],[oldfile2],[oldfile3],[...]');
0031 disp(' expread: reads an Argus file and build a structure that holds all the information of the file');
0032 disp(' usage: expread(file,close_flag)');
0033 disp(' expselect: display all the profiles of oldfile, the user clicks on the contour he/she wants to remove. Results saved in newfile');
0034 disp(' usage: expselect(newfile,oldfile)');
0035 disp(' expwriteasvertices: writes an Argus file from a structure given in input???');
0036 disp(' usage: expwriteasvertices(structure,filename)');
0037 disp(' expwrite: writes an Argus file from a structure given in input???');
0038 disp(' usage: expwrite(structure,filename)');