Changeset 596 for trunk/src/series
- Timestamp:
- Mar 30, 2013, 11:34:27 AM (12 years ago)
- Location:
- trunk/src/series
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/aver_stat.m
r595 r596 5 5 %%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%% 6 6 % 7 % This function is used in four modes by the GUI series:8 % 1) config GUI: with no input argument, the function determine the suitable GUI configuration9 % 2) interactive input: the function is used to interactively introduce input parameters, and then stops10 % 3) RUN: the function itself runs, when an appropriate input structure Param has been introduced.11 % 4) BATCH: the function itself proceeds in BATCH mode, using an xml file 'Param' as input.12 %13 % This function is used in four modes by the GUI series:14 % 1) config GUI: with no input argument, the function determine the suitable GUI configuration15 % 2) interactive input: the function is used to interactively introduce input parameters, and then stops16 % 3) RUN: the function itself runs, when an appropriate input structure Param has been introduced.17 % 4) BATCH: the function itself proceeds in BATCH mode, using an xml file 'Param' as input.18 %19 7 %OUTPUT 20 % GUI_input=list ofoptions in the GUI series.fig needed for the function8 % ParamOut: sets options in the GUI series.fig needed for the function 21 9 % 22 10 %INPUT: 23 11 % In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series. 24 12 % In batch mode, Param is the name of the corresponding xml file containing the same information 25 % In the absence of input(as activated when the current Action is selected26 % in series), the function ouput GUI_input set the activation of the needed GUI elements13 % when Param.Action.RUN=0 (as activated when the current Action is selected 14 % in series), the function ouput paramOut set the activation of the needed GUI elements 27 15 % 28 % Param contains the elements:(use the menu bar command 'export/GUI config' in series to see the current structure Param) 16 % Param contains the elements:(use the menu bar command 'export/GUI config' in series to 17 % see the current structure Param) 29 18 % .InputTable: cell of input file names, (several lines for multiple input) 30 19 % each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension} … … 33 22 % .Action: .ActionName: name of the current activated function 34 23 % .ActionPath: path of the current activated function 24 % .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled Matlab fct 25 % .RUN =0 for GUI input, =1 for function activation 26 % .RunMode='local','background', 'cluster': type of function use 27 % 35 28 % .IndexRange: set the file or frame indices on which the action must be performed 36 29 % .FieldTransform: .TransformName: name of the selected transform function 37 30 % .TransformPath: path of the selected transform function 38 % .TransformHandle: corresponding function handle39 31 % .InputFields: sub structure describing the input fields withfields 40 % .FieldName: name of the field32 % .FieldName: name(s) of the field 41 33 % .VelType: velocity type 42 34 % .FieldName_1: name of the second field in case of two input series 43 35 % .VelType_1: velocity type of the second field in case of two input series 36 % .Coord_y: name of y coordinate variable 37 % .Coord_x: name of x coordinate variable 44 38 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 45 39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -
trunk/src/series/merge_proj.m
r595 r596 3 3 % function ParamOut=merge_proj(Param) 4 4 %------------------------------------------------------------------------ 5 6 5 %%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%% 7 6 % 8 % This function is used in four modes by the GUI series:9 % 1) config GUI: with no input argument, the function determine the suitable GUI configuration10 % 2) interactive input: the function is used to interactively introduce input parameters, and then stops11 % 3) RUN: the function itself runs, when an appropriate input structure Param has been introduced.12 % 4) BATCH: the function itself proceeds in BATCH mode, using an xml file 'Param' as input.13 %14 % This function is used in four modes by the GUI series:15 % 1) config GUI: with no input argument, the function determine the suitable GUI configuration16 % 2) interactive input: the function is used to interactively introduce input parameters, and then stops17 % 3) RUN: the function itself runs, when an appropriate input structure Param has been introduced.18 % 4) BATCH: the function itself proceeds in BATCH mode, using an xml file 'Param' as input.19 %20 7 %OUTPUT 21 % GUI_input=list ofoptions in the GUI series.fig needed for the function8 % ParamOut: sets options in the GUI series.fig needed for the function 22 9 % 23 10 %INPUT: 24 11 % In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series. 25 12 % In batch mode, Param is the name of the corresponding xml file containing the same information 26 % In the absence of input(as activated when the current Action is selected27 % in series), the function ouput GUI_input set the activation of the needed GUI elements13 % when Param.Action.RUN=0 (as activated when the current Action is selected 14 % in series), the function ouput paramOut set the activation of the needed GUI elements 28 15 % 29 % Param contains the elements:(use the menu bar command 'export/GUI config' in series to see the current structure Param) 16 % Param contains the elements:(use the menu bar command 'export/GUI config' in series to 17 % see the current structure Param) 30 18 % .InputTable: cell of input file names, (several lines for multiple input) 31 19 % each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension} … … 34 22 % .Action: .ActionName: name of the current activated function 35 23 % .ActionPath: path of the current activated function 24 % .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled Matlab fct 25 % .RUN =0 for GUI input, =1 for function activation 26 % .RunMode='local','background', 'cluster': type of function use 27 % 36 28 % .IndexRange: set the file or frame indices on which the action must be performed 37 29 % .FieldTransform: .TransformName: name of the selected transform function 38 30 % .TransformPath: path of the selected transform function 39 % .TransformHandle: corresponding function handle40 31 % .InputFields: sub structure describing the input fields withfields 41 % .FieldName: name of the field32 % .FieldName: name(s) of the field 42 33 % .VelType: velocity type 43 34 % .FieldName_1: name of the second field in case of two input series 44 35 % .VelType_1: velocity type of the second field in case of two input series 36 % .Coord_y: name of y coordinate variable 37 % .Coord_x: name of x coordinate variable 45 38 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 46 39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -
trunk/src/series/sub_background.m
r592 r596 18 18 %%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%% 19 19 % 20 % This function is used in four modes by the GUI series:21 % 1) config GUI: with no input argument, the function determine the suitable GUI configuration22 % 2) interactive input: the function is used to interactively introduce input parameters, and then stops23 % 3) RUN: the function itself runs, when an appropriate input structure Param has been introduced.24 % 4) BATCH: the function itself proceeds in BATCH mode, using an xml file 'Param' as input.25 %26 20 %OUTPUT 27 % GUI_series_config=list ofoptions in the GUI series.fig needed for the function21 % ParamOut: sets options in the GUI series.fig needed for the function 28 22 % 29 23 %INPUT: 30 24 % In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series. 31 25 % In batch mode, Param is the name of the corresponding xml file containing the same information 32 % In the absence of input(as activated when the current Action is selected33 % in series), the function ouput GUI_series_configset the activation of the needed GUI elements26 % when Param.Action.RUN=0 (as activated when the current Action is selected 27 % in series), the function ouput paramOut set the activation of the needed GUI elements 34 28 % 35 % Param contains the elements:(use the menu bar command 'export/GUI config' in series to see the current structure Param) 29 % Param contains the elements:(use the menu bar command 'export/GUI config' in series to 30 % see the current structure Param) 36 31 % .InputTable: cell of input file names, (several lines for multiple input) 37 32 % each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension} 38 33 % .OutputSubDir: name of the subdirectory for data outputs 39 % .OutputDirExt: extension for the directoryfor data outputs34 % .OutputDirExt: directory extension for data outputs 40 35 % .Action: .ActionName: name of the current activated function 41 36 % .ActionPath: path of the current activated function 37 % .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled Matlab fct 38 % .RUN =0 for GUI input, =1 for function activation 39 % .RunMode='local','background', 'cluster': type of function use 40 % 42 41 % .IndexRange: set the file or frame indices on which the action must be performed 43 42 % .FieldTransform: .TransformName: name of the selected transform function 44 43 % .TransformPath: path of the selected transform function 45 % .TransformHandle: corresponding function handle46 44 % .InputFields: sub structure describing the input fields withfields 47 % .FieldName: name of the field45 % .FieldName: name(s) of the field 48 46 % .VelType: velocity type 49 47 % .FieldName_1: name of the second field in case of two input series 50 48 % .VelType_1: velocity type of the second field in case of two input series 49 % .Coord_y: name of y coordinate variable 50 % .Coord_x: name of x coordinate variable 51 51 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 52 52 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 53 54 53 55 54 function ParamOut=sub_background (Param) 56 55 -
trunk/src/series/time_series.m
r592 r596 6 6 %%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%% 7 7 % 8 % This function is used in four modes by the GUI series:9 % 1) config GUI: with no input argument, the function determine the suitable GUI configuration10 % 2) interactive input: the function is used to interactively introduce input parameters, and then stops11 % 3) RUN: the function itself runs, when an appropriate input structure Param has been introduced.12 % 4) BATCH: the function itself proceeds in BATCH mode, using an xml file 'Param' as input.13 %14 % This function is used in four modes by the GUI series:15 % 1) config GUI: with no input argument, the function determine the suitable GUI configuration16 % 2) interactive input: the function is used to interactively introduce input parameters, and then stops17 % 3) RUN: the function itself runs, when an appropriate input structure Param has been introduced.18 % 4) BATCH: the function itself proceeds in BATCH mode, using an xml file 'Param' as input.19 %20 8 %OUTPUT 21 % GUI_input=list ofoptions in the GUI series.fig needed for the function9 % ParamOut: sets options in the GUI series.fig needed for the function 22 10 % 23 11 %INPUT: 24 12 % In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series. 25 13 % In batch mode, Param is the name of the corresponding xml file containing the same information 26 % In the absence of input(as activated when the current Action is selected27 % in series), the function ouput GUI_input set the activation of the needed GUI elements14 % when Param.Action.RUN=0 (as activated when the current Action is selected 15 % in series), the function ouput paramOut set the activation of the needed GUI elements 28 16 % 29 % Param contains the elements:(use the menu bar command 'export/GUI config' in series to see the current structure Param) 17 % Param contains the elements:(use the menu bar command 'export/GUI config' in series to 18 % see the current structure Param) 30 19 % .InputTable: cell of input file names, (several lines for multiple input) 31 20 % each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension} … … 34 23 % .Action: .ActionName: name of the current activated function 35 24 % .ActionPath: path of the current activated function 25 % .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled Matlab fct 26 % .RUN =0 for GUI input, =1 for function activation 27 % .RunMode='local','background', 'cluster': type of function use 28 % 36 29 % .IndexRange: set the file or frame indices on which the action must be performed 37 30 % .FieldTransform: .TransformName: name of the selected transform function 38 31 % .TransformPath: path of the selected transform function 39 % .TransformHandle: corresponding function handle40 32 % .InputFields: sub structure describing the input fields withfields 41 % .FieldName: name of the field33 % .FieldName: name(s) of the field 42 34 % .VelType: velocity type 43 35 % .FieldName_1: name of the second field in case of two input series 44 36 % .VelType_1: velocity type of the second field in case of two input series 37 % .Coord_y: name of y coordinate variable 38 % .Coord_x: name of x coordinate variable 45 39 % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) 46 40 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 47 % 41 48 42 function ParamOut=time_series(Param) 49 43
Note: See TracChangeset
for help on using the changeset viewer.