Uses of Class
org.hipparchus.linear.Array2DRowFieldMatrix
Package
Description
Linear algebra support.
This package provides classes to solve Ordinary Differential Equations problems.
This package provides classes to solve non-stiff Ordinary Differential Equations problems.
-
Uses of Array2DRowFieldMatrix in org.hipparchus.linear
Modifier and TypeMethodDescriptionArray2DRowFieldMatrix.add
(Array2DRowFieldMatrix<T> m) Addm
to this matrix.Array2DRowFieldMatrix.multiply
(Array2DRowFieldMatrix<T> m) Postmultiplying this matrix bym
.Array2DRowFieldMatrix.subtract
(Array2DRowFieldMatrix<T> m) Subtractm
from this matrix.Modifier and TypeMethodDescriptionArray2DRowFieldMatrix.add
(Array2DRowFieldMatrix<T> m) Addm
to this matrix.Array2DRowFieldMatrix.multiply
(Array2DRowFieldMatrix<T> m) Postmultiplying this matrix bym
.Array2DRowFieldMatrix.multiplyTransposed
(Array2DRowFieldMatrix<T> m) Returns the result of postmultiplyingthis
bym^T
.Array2DRowFieldMatrix.subtract
(Array2DRowFieldMatrix<T> m) Subtractm
from this matrix.Array2DRowFieldMatrix.transposeMultiply
(Array2DRowFieldMatrix<T> m) Returns the result of postmultiplyingthis^T
bym
. -
Uses of Array2DRowFieldMatrix in org.hipparchus.ode
Modifier and TypeFieldDescriptionprotected Array2DRowFieldMatrix<T>
MultistepFieldIntegrator.nordsieck
Nordsieck matrix of the higher scaled derivatives.Modifier and TypeMethodDescriptionprotected abstract Array2DRowFieldMatrix<T>
MultistepFieldIntegrator.initializeHighOrderDerivatives
(T h, T[] t, T[][] y, T[][] yDot) Initialize the high order scaled derivatives at step start. -
Uses of Array2DRowFieldMatrix in org.hipparchus.ode.nonstiff
Modifier and TypeMethodDescriptionprotected Array2DRowFieldMatrix<T>
AdamsFieldIntegrator.initializeHighOrderDerivatives
(T h, T[] t, T[][] y, T[][] yDot) Initialize the high order scaled derivatives at step start.AdamsNordsieckFieldTransformer.initializeHighOrderDerivatives
(T h, T[] t, T[][] y, T[][] yDot) Initialize the high order scaled derivatives at step start.AdamsFieldIntegrator.updateHighOrderDerivativesPhase1
(Array2DRowFieldMatrix<T> highOrder) Update the high order scaled derivatives for Adams integrators (phase 1).AdamsNordsieckFieldTransformer.updateHighOrderDerivativesPhase1
(Array2DRowFieldMatrix<T> highOrder) Update the high order scaled derivatives for Adams integrators (phase 1).Modifier and TypeMethodDescriptionprotected org.hipparchus.ode.nonstiff.AdamsFieldStateInterpolator<T>
AdamsBashforthFieldIntegrator.finalizeStep
(T stepSize, T[] predictedY, T[] predictedScaled, Array2DRowFieldMatrix<T> predictedNordsieck, boolean isForward, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> equationsMapper) Finalize the step.protected abstract org.hipparchus.ode.nonstiff.AdamsFieldStateInterpolator<T>
AdamsFieldIntegrator.finalizeStep
(T stepSize, T[] predictedState, T[] predictedScaled, Array2DRowFieldMatrix<T> predictedNordsieck, boolean isForward, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> equationsMapper) Finalize the step.protected org.hipparchus.ode.nonstiff.AdamsFieldStateInterpolator<T>
AdamsMoultonFieldIntegrator.finalizeStep
(T stepSize, T[] predictedY, T[] predictedScaled, Array2DRowFieldMatrix<T> predictedNordsieck, boolean isForward, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> equationsMapper) Finalize the step.AdamsFieldIntegrator.updateHighOrderDerivativesPhase1
(Array2DRowFieldMatrix<T> highOrder) Update the high order scaled derivatives for Adams integrators (phase 1).AdamsNordsieckFieldTransformer.updateHighOrderDerivativesPhase1
(Array2DRowFieldMatrix<T> highOrder) Update the high order scaled derivatives for Adams integrators (phase 1).void
AdamsFieldIntegrator.updateHighOrderDerivativesPhase2
(T[] start, T[] end, Array2DRowFieldMatrix<T> highOrder) Update the high order scaled derivatives Adams integrators (phase 2).void
AdamsNordsieckFieldTransformer.updateHighOrderDerivativesPhase2
(T[] start, T[] end, Array2DRowFieldMatrix<T> highOrder) Update the high order scaled derivatives Adams integrators (phase 2).