Class ODESolution
- java.lang.Object
-
- dev.nm.analysis.differentialequation.ode.ivp.solver.ODESolution
-
public class ODESolution extends Object
Solution to an ODE problem.
-
-
Constructor Summary
Constructors Constructor Description ODESolution(double[] x, Vector[] y)
Create a solution with estimated values at the given points.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]
x()
Get the values of the independent variable.Vector[]
y()
Get the corresponding values of the dependent variable.
-
-
-
Constructor Detail
-
ODESolution
public ODESolution(double[] x, Vector[] y)
Create a solution with estimated values at the given points.- Parameters:
x
- the values of the independent variabley
- the corresponding values of the dependent variable.
-
-
Method Detail
-
x
public double[] x()
Get the values of the independent variable.- Returns:
- x
-
y
public Vector[] y()
Get the corresponding values of the dependent variable.- Returns:
- y
-
-