Uses of Class
org.apache.commons.math4.legacy.linear.Array2DRowFieldMatrix
-
Packages that use Array2DRowFieldMatrix Package Description org.apache.commons.math4.legacy.linear Linear algebra support.org.apache.commons.math4.legacy.ode This package provides classes to solve Ordinary Differential Equations problems.org.apache.commons.math4.legacy.ode.nonstiff This package provides classes to solve non-stiff Ordinary Differential Equations problems. -
-
Uses of Array2DRowFieldMatrix in org.apache.commons.math4.legacy.linear
Methods in org.apache.commons.math4.legacy.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.apache.commons.math4.legacy.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
.Array2DRowFieldMatrix<T>
Array2DRowFieldMatrix. subtract(Array2DRowFieldMatrix<T> m)
Subtractm
from this matrix. -
Uses of Array2DRowFieldMatrix in org.apache.commons.math4.legacy.ode
Fields in org.apache.commons.math4.legacy.ode declared as Array2DRowFieldMatrix Modifier and Type Field Description protected Array2DRowFieldMatrix<T>
MultistepFieldIntegrator. nordsieck
Nordsieck matrix of the higher scaled derivatives.Methods in org.apache.commons.math4.legacy.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.apache.commons.math4.legacy.ode.nonstiff
Methods in org.apache.commons.math4.legacy.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.apache.commons.math4.legacy.ode.nonstiff with parameters of type Array2DRowFieldMatrix Modifier and Type Method Description 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).
-