Package jline.lib.ode
Class RKF45Result
-
- All Implemented Interfaces:
public final class RKF45ResultResult returned by RKF45.integrate.
-
-
Field Summary
Fields Modifier and Type Field Description private final DoubleArrayyprivate final DoubleArrayypprivate final Doubletprivate final Integerflagprivate final Doublerelerr
-
Constructor Summary
Constructors Constructor Description RKF45Result(DoubleArray y, DoubleArray yp, Double t, Integer flag, Double relerr)
-
Method Summary
Modifier and Type Method Description final DoubleArraygetY()solution vector at the output time final DoubleArraygetYp()derivative vector at the output time final DoublegetT()current value of the independent variable final IntegergetFlag()status indicator (2 = normal, see RKF45 for other codes) final DoublegetRelerr()possibly adjusted relative error tolerance -
-
Constructor Detail
-
RKF45Result
RKF45Result(DoubleArray y, DoubleArray yp, Double t, Integer flag, Double relerr)
-
-
Method Detail
-
getY
final DoubleArray getY()
solution vector at the output time
-
getYp
final DoubleArray getYp()
derivative vector at the output time
-
-
-
-