Ignore:
Timestamp:
Mar 30, 2013, 11:34:27 AM (11 years ago)
Author:
sommeria
Message:

corrections done in civ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series/sub_background.m

    r592 r596  
    1818%%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%%
    1919%
    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 configuration
    22 %           2) interactive input: the function is used to interactively introduce input parameters, and then stops
    23 %           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 %
    2620%OUTPUT
    27 % GUI_series_config=list of options in the GUI series.fig needed for the function
     21% ParamOut: sets options in the GUI series.fig needed for the function
    2822%
    2923%INPUT:
    3024% In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series.
    3125% 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 selected
    33 % in series), the function ouput GUI_series_config set the activation of the needed GUI elements
     26% 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
    3428%
    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)
    3631%    .InputTable: cell of input file names, (several lines for multiple input)
    3732%                      each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension}
    3833%    .OutputSubDir: name of the subdirectory for data outputs
    39 %    .OutputDirExt: extension for the directory for data outputs
     34%    .OutputDirExt: directory extension for data outputs
    4035%    .Action: .ActionName: name of the current activated function
    4136%             .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%             
    4241%    .IndexRange: set the file or frame indices on which the action must be performed
    4342%    .FieldTransform: .TransformName: name of the selected transform function
    4443%                     .TransformPath:   path  of the selected transform function
    45 %                     .TransformHandle: corresponding function handle
    4644%    .InputFields: sub structure describing the input fields withfields
    47 %              .FieldName: name of the field
     45%              .FieldName: name(s) of the field
    4846%              .VelType: velocity type
    4947%              .FieldName_1: name of the second field in case of two input series
    5048%              .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
    5151%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
    5252%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    53 
    54    
     53   
    5554function ParamOut=sub_background (Param)
    5655
Note: See TracChangeset for help on using the changeset viewer.