Uses of Class
org.apache.commons.math3.linear.Array2DRowFieldMatrix
Packages that use 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.apache.commons.math3.linear
Methods in org.apache.commons.math3.linear that return Array2DRowFieldMatrixModifier 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.Methods in org.apache.commons.math3.linear with parameters of type Array2DRowFieldMatrixModifier 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. -
Uses of Array2DRowFieldMatrix in org.apache.commons.math3.ode
Fields in org.apache.commons.math3.ode declared as Array2DRowFieldMatrixModifier and TypeFieldDescriptionprotected Array2DRowFieldMatrix
<T> MultistepFieldIntegrator.nordsieck
Nordsieck matrix of the higher scaled derivatives.Methods in org.apache.commons.math3.ode that return Array2DRowFieldMatrixModifier 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.apache.commons.math3.ode.nonstiff
Fields in org.apache.commons.math3.ode.nonstiff declared as Array2DRowFieldMatrixModifier and TypeFieldDescriptionprivate final Array2DRowFieldMatrix
<T> AdamsFieldStepInterpolator.nordsieck
Nordsieck vector.private final Array2DRowFieldMatrix
<T> AdamsNordsieckFieldTransformer.update
Update matrix for the higher order derivatives h2/2 y'', h3/6 y''' ...Methods in org.apache.commons.math3.ode.nonstiff that return Array2DRowFieldMatrixModifier 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).Methods in org.apache.commons.math3.ode.nonstiff with parameters of type Array2DRowFieldMatrixModifier and TypeMethodDescriptionstatic <S extends RealFieldElement<S>>
FieldODEStateAndDerivative<S> AdamsFieldStepInterpolator.taylor
(FieldODEStateAndDerivative<S> reference, S time, S stepSize, S[] scaled, Array2DRowFieldMatrix<S> nordsieck) Estimate state by applying Taylor formula.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).Constructors in org.apache.commons.math3.ode.nonstiff with parameters of type Array2DRowFieldMatrixModifierConstructorDescription(package private)
AdamsFieldStepInterpolator
(T stepSize, FieldODEStateAndDerivative<T> reference, T[] scaled, Array2DRowFieldMatrix<T> nordsieck, boolean isForward, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> equationsMapper) Simple constructor.private
AdamsFieldStepInterpolator
(T stepSize, FieldODEStateAndDerivative<T> reference, T[] scaled, Array2DRowFieldMatrix<T> nordsieck, boolean isForward, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldODEStateAndDerivative<T> softPreviousState, FieldODEStateAndDerivative<T> softCurrentState, FieldEquationsMapper<T> equationsMapper) Simple constructor.