All Packages Class Hierarchy This Package Previous Next Index
Class CH.epfl.lcvm.mccc.ODEFunctionCircle
java.lang.Object
|
+----CH.epfl.lcvm.mccc.ODEFunctionBase
|
+----CH.epfl.lcvm.mccc.ODEFunctionCircle
- public class ODEFunctionCircle
- extends ODEFunctionBase
- implements ODEFunctionWithBC
An ODE of the form
x' = y
y' = -x
-
ODEFunctionCircle()
- Create a default sphere
-
call(Matrix, Matrix)
-
Returns the value of
x' = y
y' = -x
at the specified point
-
callBC(Matrix, Matrix, Matrix)
- Returns the value of the boundary conditions
-
getNumBC()
- Returns the number of boundary conditions
-
main(String[])
-
Exercise the class by trying the various functions
ODEFunctionCircle
public ODEFunctionCircle()
- Create a default sphere
call
public Matrix call(Matrix input,
Matrix parameters)
- Returns the value of
x' = y
y' = -x
at the specified point
- Parameters:
- value - the point at which tp call the function
- Returns:
- the return value of the function.
- Overrides:
- call in class ODEFunctionBase
callBC
public Matrix callBC(Matrix x0,
Matrix x1,
Matrix parameters)
- Returns the value of the boundary conditions
- Parameters:
- x0 - The values at s = 0
- x1 - The values at s = 1
- parameters - the parameters at which to call the function
- Returns:
- the return value of the function.
getNumBC
public int getNumBC()
- Returns the number of boundary conditions
- Returns:
- the number of parameters.
main
public static void main(String argv[]) throws MCCCException
- Exercise the class by trying the various functions
- Throws: MCCCException
- In case something fails in the
test harness it throws this exception.
All Packages Class Hierarchy This Package Previous Next Index