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

Variable Index

 o dimension_
 o numParameters_

Method Index

 o call(Matrix, Matrix)
Returns the value of the function at the specified point
 o getDimension()
Returns the dimension function.
 o getNumParameters()
Returns the number of parameters in the function

Variables

 o dimension_
 protected int dimension_
 o numParameters_
 protected int numParameters_

Methods

 o 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.
 o 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.
 o 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