Index: /trunk/src/series/aver_stat.m
===================================================================
--- /trunk/src/series/aver_stat.m	(revision 168)
+++ /trunk/src/series/aver_stat.m	(revision 169)
@@ -1,2 +1,16 @@
+%'aver_stat': calculate field average, used with series.fig
+%------------------------------------------------------------------------
+% function GUI_input=aver_stat(num_i1,num_i2,num_j1,num_j2,Series)
+%
+%OUTPUT
+% GUI_input=list of options in the GUI series.fig needed for the function
+%
+%INPUT:
+%num_i1: series of first indices i (given from the series interface as first_i:incr_i:last_i, mode and list_pair_civ)
+%num_i2: series of second indices i (given from the series interface as first_i:incr_i:last_i, mode and list_pair_civ)
+%num_j1: series of first indices j (given from the series interface as first_j:incr_j:last_j, mode and list_pair_civ )
+%num_j2: series of second indices j (given from the series interface as first_j:incr_j:last_j, mode and list_pair_civ)
+%Series: Matlab structure containing information set by the series interface
+%
 function GUI_input=aver_stat(num_i1,num_i2,num_j1,num_j2,Series)
 %----------------------------------------------------------------------
Index: /trunk/src/series/check_files.m
===================================================================
--- /trunk/src/series/check_files.m	(revision 168)
+++ /trunk/src/series/check_files.m	(revision 169)
@@ -1,2 +1,16 @@
+%'check_files': check the existence and status of the files selected by series.fig
+%------------------------------------------------------------------------
+% function GUI_input=check_files(num_i1,num_i2,num_j1,num_j2,Series)
+%
+%OUTPUT
+% GUI_input=list of options in the GUI series.fig needed for the function
+%
+%INPUT:
+%num_i1: series of first indices i (given from the series interface as first_i:incr_i:last_i, mode and list_pair_civ)
+%num_i2: series of second indices i (given from the series interface as first_i:incr_i:last_i, mode and list_pair_civ)
+%num_j1: series of first indices j (given from the series interface as first_j:incr_j:last_j, mode and list_pair_civ )
+%num_j2: series of second indices j (given from the series interface as first_j:incr_j:last_j, mode and list_pair_civ)
+%Series: Matlab structure containing information set by the series interface
+%
 function GUI_input=check_files(num_i1_cell,num_i2_cell,num_j1_cell,num_j2_cell,Series) %(filecell,filecell_1,num_i,num_j,vel_type,field,param);
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Index: /trunk/src/series/merge_proj.m
===================================================================
--- /trunk/src/series/merge_proj.m	(revision 168)
+++ /trunk/src/series/merge_proj.m	(revision 169)
@@ -1,2 +1,16 @@
+%'merge_proj': project and concatene fields, used with series.fig
+%------------------------------------------------------------------------
+% function GUI_input=merge_proj(num_i1,num_i2,num_j1,num_j2,Series)
+%
+%OUTPUT
+% GUI_input=list of options in the GUI series.fig needed for the function
+%
+%INPUT:
+%num_i1: series of first indices i (given from the series interface as first_i:incr_i:last_i, mode and list_pair_civ)
+%num_i2: series of second indices i (given from the series interface as first_i:incr_i:last_i, mode and list_pair_civ)
+%num_j1: series of first indices j (given from the series interface as first_j:incr_j:last_j, mode and list_pair_civ )
+%num_j2: series of second indices j (given from the series interface as first_j:incr_j:last_j, mode and list_pair_civ)
+%Series: Matlab structure containing information set by the series interface
+%
 function GUI_input=merge_proj(num_i1,num_i2,num_j1,num_j2,Series)
 
Index: /trunk/src/series/sub_background.m
===================================================================
--- /trunk/src/series/sub_background.m	(revision 168)
+++ /trunk/src/series/sub_background.m	(revision 169)
@@ -1,4 +1,20 @@
-%----------------------------------------------------------------------
-% --- substract background to the images: rank the images by luminosity at each point and substracts to the images
+%'sub_background': substract background to an image series, used with series.fig
+%------------------------------------------------------------------------
+% function GUI_input=aver_stat(num_i1,num_i2,num_j1,num_j2,Series)
+%
+%OUTPUT
+% GUI_input=list of options in the GUI series.fig needed for the function
+%
+%INPUT:
+%num_i1: series of first indices i (given from the series interface as first_i:incr_i:last_i, mode and list_pair_civ)
+%num_i2: series of second indices i (given from the series interface as first_i:incr_i:last_i, mode and list_pair_civ)
+%num_j1: series of first indices j (given from the series interface as first_j:incr_j:last_j, mode and list_pair_civ )
+%num_j2: series of second indices j (given from the series interface as first_j:incr_j:last_j, mode and list_pair_civ)
+%Series: Matlab structure containing information set by the series interface
+%       .RootPath: path to the image series
+%       .RootFile: root file name
+%       .FileExt: image file extension 
+%       .NomType: nomenclature type for file indexing
+%       .NbSlice: %number of slices defined on the interface
 %----------------------------------------------------------------------
 % Method: 
@@ -14,17 +30,6 @@
     % The processing can be done in slices (number nbslice), with bursts of
     % nbfield2 successive images for a given slice (mode 'multilevel')
-    % In the mode 'volume', nbfield2=1 (1 image at each level), and
-    % nbslice=
-%INPUT:
-% num_i1: matrix of image indices i
-% num_j1: matrix of image indices j, must be the same size as num_i1
-% num_i2 and num_j2: not used for a function acting on images
-% Series: matlab structure containing parameters, as defined by the interface UVMAT/series
-%       Series.RootPath: path to the image series
-%       Series.RootFile: root file name
-%       Series.FileExt: image file extension 
-%       Series.NomType: nomenclature type for file indexing
-%       Series.NbSlice: %number of slices defined on the interface
-
+    % In the mode 'volume', nbfield2=1 (1 image at each level)
+%
 function GUI_input=sub_background (num_i1,num_i2,num_j1,num_j2,Series)
 
Index: /trunk/src/series/time_series.m
===================================================================
--- /trunk/src/series/time_series.m	(revision 168)
+++ /trunk/src/series/time_series.m	(revision 169)
@@ -1,12 +1,17 @@
-function GUI_input=time_series(num_i1,num_i2,num_j1,num_j2,Series) 
-%----------------------------------------------------------------------
-% --- make a time series analysis
-%----------------------------------------------------------------------
-%INPUT: 
+%'time_series': extract a time series, used with series.fig
+%------------------------------------------------------------------------
+% function GUI_input=time_series(num_i1,num_i2,num_j1,num_j2,Series)
+%
+%OUTPUT
+% GUI_input=list of options in the GUI series.fig needed for the function
+%
+%INPUT:
 %num_i1: series of first indices i (given from the series interface as first_i:incr_i:last_i, mode and list_pair_civ)
 %num_i2: series of second indices i (given from the series interface as first_i:incr_i:last_i, mode and list_pair_civ)
 %num_j1: series of first indices j (given from the series interface as first_j:incr_j:last_j, mode and list_pair_civ )
 %num_j2: series of second indices j (given from the series interface as first_j:incr_j:last_j, mode and list_pair_civ)
-%OTHER INPUTS given by the structure Series
+%Series: Matlab structure containing information set by the series interface
+%
+function GUI_input=time_series(num_i1,num_i2,num_j1,num_j2,Series) 
 
 %requests for the visibility of input windows in the GUI series  (activated directly by the selection in the menu ACTION)
