IGLib 1.4
The IGLib base library for development of numerical, technical and business applications.
|
Base class for parameterized real-valued functions of single variable. Parameters that completely define the function out of parametric family of functions can be queried or set. Parameters are represented and stored as vector. More...
Public Member Functions | |
RealFunctionParametric (IVector parameters) | |
Constructor. Creates a new parametric 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 functions. | |
Private Member Functions | |
RealFunctionParametric () | |
Default constructor is inaccessible because it has no meaning. | |
Private Attributes | |
IVector | _parameters |
Base class for parameterized real-valued functions of single variable. Parameters that completely define the function out of parametric family of functions can be queried or set. Parameters are represented and stored as vector.
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::RealFunctionParametric::RealFunctionParametric | ( | ) | [inline, private] |
Default constructor is inaccessible because it has no meaning.
IG::Num::RealFunctionParametric::RealFunctionParametric | ( | IVector | parameters | ) | [inline] |
Constructor. Creates a new parametric 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. |
override IVector IG::Num::RealFunctionParametric::Parameters [get, set] |
Parameters that define the specific function out of parametric familiy of functions.
Implements IG::Num::IRealFunctionParametric.