Uses of Class
org.hipparchus.linear.Array2DRowFieldMatrix
-
Packages that use Array2DRowFieldMatrix Package Description org.hipparchus.linear Linear algebra support.org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.hipparchus.ode.nonstiff This package provides classes to solve non-stiff Ordinary Differential Equations problems.org.hipparchus.ode.nonstiff.interpolators This package provides classes implementing interpolators for dense outputs of ODE integrators. -
-
Uses of Array2DRowFieldMatrix in org.hipparchus.linear
Methods in org.hipparchus.linear that return Array2DRowFieldMatrix Modifier and Type Method Description Array2DRowFieldMatrix<T>
Array2DRowFieldMatrix. add(Array2DRowFieldMatrix<T> m)
Addm
to this matrix.Array2DRowFieldMatrix<T>
Array2DRowFieldMatrix. multiply(Array2DRowFieldMatrix<T> m)
Postmultiplying this matrix bym
.Array2DRowFieldMatrix<T>
Array2DRowFieldMatrix. subtract(Array2DRowFieldMatrix<T> m)
Subtractm
from this matrix.Methods in org.hipparchus.linear with parameters of type Array2DRowFieldMatrix Modifier and Type Method Description Array2DRowFieldMatrix<T>
Array2DRowFieldMatrix. add(Array2DRowFieldMatrix<T> m)
Addm
to this matrix.Array2DRowFieldMatrix<T>
Array2DRowFieldMatrix. multiply(Array2DRowFieldMatrix<T> m)
Postmultiplying this matrix bym
.FieldMatrix<T>
Array2DRowFieldMatrix. multiplyTransposed(Array2DRowFieldMatrix<T> m)
Returns the result of postmultiplyingthis
bym^T
.Array2DRowFieldMatrix<T>
Array2DRowFieldMatrix. subtract(Array2DRowFieldMatrix<T> m)
Subtractm
from this matrix.FieldMatrix<T>
Array2DRowFieldMatrix. transposeMultiply(Array2DRowFieldMatrix<T> m)
Returns the result of postmultiplyingthis^T
bym
. -
Uses of Array2DRowFieldMatrix in org.hipparchus.ode
Fields in org.hipparchus.ode declared as Array2DRowFieldMatrix Modifier and Type Field Description protected Array2DRowFieldMatrix<T>
MultistepFieldIntegrator. nordsieck
Nordsieck matrix of the higher scaled derivatives.Methods in org.hipparchus.ode that return Array2DRowFieldMatrix Modifier and Type Method Description protected 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
Methods in org.hipparchus.ode.nonstiff that return Array2DRowFieldMatrix Modifier and Type Method Description protected Array2DRowFieldMatrix<T>
AdamsFieldIntegrator. initializeHighOrderDerivatives(T h, T[] t, T[][] y, T[][] yDot)
Initialize the high order scaled derivatives at step start.Array2DRowFieldMatrix<T>
AdamsNordsieckFieldTransformer. initializeHighOrderDerivatives(T h, T[] t, T[][] y, T[][] yDot)
Initialize the high order scaled derivatives at step start.Array2DRowFieldMatrix<T>
AdamsFieldIntegrator. updateHighOrderDerivativesPhase1(Array2DRowFieldMatrix<T> highOrder)
Update the high order scaled derivatives for Adams integrators (phase 1).Array2DRowFieldMatrix<T>
AdamsNordsieckFieldTransformer. updateHighOrderDerivativesPhase1(Array2DRowFieldMatrix<T> highOrder)
Update the high order scaled derivatives for Adams integrators (phase 1).Methods in org.hipparchus.ode.nonstiff with parameters of type Array2DRowFieldMatrix Modifier and Type Method Description protected 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 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 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.Array2DRowFieldMatrix<T>
AdamsFieldIntegrator. updateHighOrderDerivativesPhase1(Array2DRowFieldMatrix<T> highOrder)
Update the high order scaled derivatives for Adams integrators (phase 1).Array2DRowFieldMatrix<T>
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). -
Uses of Array2DRowFieldMatrix in org.hipparchus.ode.nonstiff.interpolators
Methods in org.hipparchus.ode.nonstiff.interpolators that return Array2DRowFieldMatrix Modifier and Type Method Description Array2DRowFieldMatrix<T>
AdamsFieldStateInterpolator. getNordsieck()
Get the Nordsieck vector.Methods in org.hipparchus.ode.nonstiff.interpolators with parameters of type Array2DRowFieldMatrix Modifier and Type Method Description static <S extends CalculusFieldElement<S>>
FieldODEStateAndDerivative<S>AdamsFieldStateInterpolator. taylor(FieldEquationsMapper<S> equationsMapper, FieldODEStateAndDerivative<S> reference, S time, S stepSize, S[] scaled, Array2DRowFieldMatrix<S> nordsieck)
Estimate state by applying Taylor formula.Constructors in org.hipparchus.ode.nonstiff.interpolators with parameters of type Array2DRowFieldMatrix Constructor Description AdamsFieldStateInterpolator(T stepSize, FieldODEStateAndDerivative<T> reference, T[] scaled, Array2DRowFieldMatrix<T> nordsieck, boolean isForward, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> equationsMapper)
Simple constructor.
-