All Packages Class Hierarchy This Package Previous Next Index
Class CH.epfl.lcvm.mccc.ODEFunctionBase
java.lang.Object
|
+----CH.epfl.lcvm.mccc.ODEFunctionBase
- public abstract class ODEFunctionBase
- extends Object
- implements ODEFunction
A base abtract class for an ODE function which takes care of the domain and
range accessors.
- See Also:
- Function
-
dimension_
-
-
numParameters_
-
-
call(Matrix, Matrix)
-
Returns the value of the function at the specified point
-
getDimension()
- Returns the dimension function.
-
getNumParameters()
- Returns the number of parameters in the function
dimension_
protected int dimension_
numParameters_
protected int numParameters_
call
public abstract Matrix call(Matrix value,
Matrix parameters)
- Returns the value of the function at the specified point
- Parameters:
- value - the point at which tp call the function
- parameters - the parameters at which tp call the function
- Returns:
- the return value of the function.
getDimension
public int getDimension()
- Returns the dimension function. The
number of rows in the input value and the number of rows in the output.
- Returns:
- the dimension of the range of the function.
getNumParameters
public int getNumParameters()
- Returns the number of parameters in the function
- Returns:
- the dimension of the range of the function.
All Packages Class Hierarchy This Package Previous Next Index