Changeset 2893


Ignore:
Timestamp:
01/22/10 08:47:11 (15 years ago)
Author:
seroussi
Message:

added examples with the possible options of parametercontroldrag

Location:
issm/trunk/src/m/classes/public
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/public/parametercontrolB.m

    r2764 r2893  
    11function md=parametercontrolB(md,varargin),
    2 %PARAMETERCONTROLB - control method on B parameterization
     2%PARAMETERCONTROLB - parameterization for control method on B
    33%
    44%   It is possible to specify the number of steps, values for the
     
    1515%      md=parametercontrolB(md,'cm_maxdmp_value',5*10^8,'cm_maxdmp_slope',10^-20,,'cm_mindmp_value',10^7,'cm_mindmp_slope',10^-17)
    1616%      md=parametercontrolB(md,eps_cm',10^-4,'optscal',[10^7 10^8])
     17%
     18%   See also  PARAMETERCONTROLDRAG
    1719
    1820%process options
  • issm/trunk/src/m/classes/public/parametercontroldrag.m

    r2732 r2893  
    1 function md=parametercontrol(md,varargin),
    2 %PARAMETERCONTROL - control method parameterization
     1function md=parametercontroldrag(md,varargin),
     2%PARAMETERCONTROLDRAG - parameterization for control method on drag
    33%
     4%   It is possible to specify the number of steps, values for the
     5%   minimum and maximum values of the drag, specify a noise dampening, the
     6%   kind of fit to use or the the optscal.
     7%   
    48%   Usage:
    5 %       md=parametercontrol(md,varargin)
     9%       md=parametercontroldrag(md,varargin)
     10%
     11%   Example:
     12%      md=parametercontroldrag(md)
     13%      md=parametercontroldrag(md,'nsteps',20,'cm_noisedmp',10^-8,'fit',0)
     14%      md=parametercontroldrag(md,'cm_min',1,'cm_max',150,'cm_jump',0.99,'maxiter',20)
     15%      md=parametercontroldrag(md,'cm_maxdmp_value',100,'cm_maxdmp_slope',10^-13,,'cm_mindmp_value',10,'cm_mindmp_slope',10^-17)
     16%      md=parametercontroldrag(md,eps_cm',10^-4,'optscal',[10^7 10^8])
     17%
     18%   See also PARAMETERCONTROLB
    619
    720%process options
Note: See TracChangeset for help on using the changeset viewer.