ArctanModel

 
ArctanModel = class ArctanModel(NonLinearModel)
    ArctanModel(copy=None, **kwargs)
 
Arctangus Model.
 
    f( x:p ) = p_0 * arctan( p_2 * ( x - p_1 ) )
    p_0 = amplitude;  p_1 = center; p_2 = slope.
 
As always x = input.
 
The parameters are initialized at {2/pi, 0.0, 1.0}. It is a non-linear model.
 
Attributes from Model
--------------------------
    npchain, parameters, stdevs, xUnit, yUnit
 
Attributes from FixedModel
--------------------------
    npmax, fixed, parlist, mlist
 
Attributes from BaseModel
--------------------------
    npbase, ndim, priors, posIndex, nonZero,
         tiny, deltaP, parNames

 
Example
-------
>>> arct = ArctanModel( )
>>> print( arct.getNumberOfParameters( ) )
3
 
 
Author:      Do Kester
 
 
Method resolution order:
ArctanModel
NonLinearModel
Model
FixedModel
BaseModel
builtins.object

Constructor:
ArctanModel( copy=None, **kwargs )
Arc-tangus model.
 
Number of parameters is 3.
 
Parameters
----------
copy : ArctanModel
    to be copied
fixed : None or dictionary of {int:float|Model}
    int         index of parameter to fix permanently.
    float|Model values for the fixed parameters.
    Attribute fixed can only be set in the constructor.
    See: FixedModel
Methods defined here:
baseDerivative( xdata, params )
Return the derivative df/dx at each input (=x).
 
Parameters
----------
xdata : array_like
    values at which to calculate the result
params : array_like
    values for the parameters.
baseName()
Returns a string representation of the model.
baseParameterUnit( k )
Return the unit of the indicated parameter.
 
Parameters
---------
k : int
    parameter number.
basePartial( xdata, params, parlist=None )
Returns the partials at the input value.
 
Parameters
----------
xdata : array_like
    values at which to calculate the result
params : array_like
    values for the parameters.
parlist : array_like
    list of indices active parameters (or None for all)
baseResult( xdata, params )
Returns the result of the model function.
 
Parameters
----------
xdata : array_like
    values at which to calculate the result
params : array_like
    values for the parameters.
copy()
Copy method.

Methods inherited from NonLinearModel:
Methods inherited from Model:
Overloaded operators and aliases Other methods Methods inherited from FixedModel:
Methods inherited from BaseModel: