IGLib 1.4
The IGLib base library for development of numerical, technical and business applications.
|
Base class for parameterized scalar functions with affine transformation of co-ordinates. Parameters that completely define the function out of parametric family of functions can be queried or set. Parameters are represented and stored as vector. Affine transformation of coordinates is included: the reference function evaluation must be defined while the actual function is defined as that reference function of transformed coordinates. If transformation is not specified then function reduces to the reference one. More...
Public Member Functions | |
ScalarFunctionParametric (IVector parameters) | |
Constructor. Does not define affine transformation of the function. | |
ScalarFunctionParametric (IVector parameters, IAffineTransformation transformation) | |
Cobnstructor. Creates a new parametric scalar function with the specified parameters and transformation of coordinates. | |
Properties | |
override IVector | Parameters [get, set] |
Parameters that define the specific function out of parametric familiy of scalar functions. | |
Private Member Functions | |
ScalarFunctionParametric () | |
Default constructor is inaccessible because it has no meaning. | |
Private Attributes | |
IVector | _parameters |
Base class for parameterized scalar functions with affine transformation of co-ordinates. Parameters that completely define the function out of parametric family of functions can be queried or set. Parameters are represented and stored as vector. Affine transformation of coordinates is included: the reference function evaluation must be defined while the actual function is defined as that reference function of transformed coordinates. If transformation is not specified then function reduces to the reference one.
This base class does not implement data containing parameters. This enables to derive base classes with different representations of parameters, e.g. with only one number for one parametric functions. $A Igor Dec10;
IG::Num::ScalarFunctionParametric::ScalarFunctionParametric | ( | ) | [inline, private] |
Default constructor is inaccessible because it has no meaning.
IG::Num::ScalarFunctionParametric::ScalarFunctionParametric | ( | IVector | parameters | ) | [inline] |
Constructor. Does not define affine transformation of the function.
parameters | Vector of parameters that define a specific function out of a parametric family of functions. |
IG::Num::ScalarFunctionParametric::ScalarFunctionParametric | ( | IVector | parameters, |
IAffineTransformation | transformation | ||
) | [inline] |
Cobnstructor. Creates a new parametric scalar function with the specified parameters and transformation of coordinates.
parameters | Vector of parameters that define a specific function out of a parametric family of functions. |
transformation | Affine transformation of coordinates. Actual function is calculated as some reference function evaluated at inverse affine transformed parameters. If null then transformation is not applied. |
override IVector IG::Num::ScalarFunctionParametric::Parameters [get, set] |
Parameters that define the specific function out of parametric familiy of scalar functions.
Implements IG::Num::IScalarFunctionParametric.