Uses of Class
org.hipparchus.linear.Array2DRowRealMatrix
Packages that use Array2DRowRealMatrix
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.
This package provides classes implementing interpolators for dense outputs of ODE integrators.
-
Uses of Array2DRowRealMatrix in org.hipparchus.linear
Methods in org.hipparchus.linear that return Array2DRowRealMatrixModifier and TypeMethodDescriptionArray2DRowRealMatrix.add(Array2DRowRealMatrix m) Compute the sum ofthisandm.static Array2DRowRealMatrixMatrixUtils.bigFractionMatrixToRealMatrix(FieldMatrix<BigFraction> m) static Array2DRowRealMatrixMatrixUtils.fractionMatrixToRealMatrix(FieldMatrix<Fraction> m) Array2DRowRealMatrix.multiply(Array2DRowRealMatrix m) Returns the result of postmultiplyingthisbym.Array2DRowRealMatrix.subtract(Array2DRowRealMatrix m) Returnsthisminusm.Methods in org.hipparchus.linear with parameters of type Array2DRowRealMatrixModifier and TypeMethodDescriptionArray2DRowRealMatrix.add(Array2DRowRealMatrix m) Compute the sum ofthisandm.Array2DRowRealMatrix.multiply(Array2DRowRealMatrix m) Returns the result of postmultiplyingthisbym.Array2DRowRealMatrix.multiplyTransposed(Array2DRowRealMatrix m) Returns the result of postmultiplyingthisbym^T.Array2DRowRealMatrix.subtract(Array2DRowRealMatrix m) Returnsthisminusm.Array2DRowRealMatrix.transposeMultiply(Array2DRowRealMatrix m) Returns the result of postmultiplyingthis^Tbym. -
Uses of Array2DRowRealMatrix in org.hipparchus.ode
Fields in org.hipparchus.ode declared as Array2DRowRealMatrixModifier and TypeFieldDescriptionprotected Array2DRowRealMatrixMultistepIntegrator.nordsieckNordsieck matrix of the higher scaled derivatives.Methods in org.hipparchus.ode that return Array2DRowRealMatrixModifier and TypeMethodDescriptionprotected abstract Array2DRowRealMatrixMultistepIntegrator.initializeHighOrderDerivatives(double h, double[] t, double[][] y, double[][] yDot) Initialize the high order scaled derivatives at step start. -
Uses of Array2DRowRealMatrix in org.hipparchus.ode.nonstiff
Methods in org.hipparchus.ode.nonstiff that return Array2DRowRealMatrixModifier and TypeMethodDescriptionprotected Array2DRowRealMatrixAdamsIntegrator.initializeHighOrderDerivatives(double h, double[] t, double[][] y, double[][] yDot) Initialize the high order scaled derivatives at step start.AdamsNordsieckTransformer.initializeHighOrderDerivatives(double h, double[] t, double[][] y, double[][] yDot) Initialize the high order scaled derivatives at step start.AdamsIntegrator.updateHighOrderDerivativesPhase1(Array2DRowRealMatrix highOrder) Update the high order scaled derivatives for Adams integrators (phase 1).AdamsNordsieckTransformer.updateHighOrderDerivativesPhase1(Array2DRowRealMatrix highOrder) Update the high order scaled derivatives for Adams integrators (phase 1).Methods in org.hipparchus.ode.nonstiff with parameters of type Array2DRowRealMatrixModifier and TypeMethodDescriptionprotected AdamsStateInterpolatorAdamsBashforthIntegrator.finalizeStep(double stepSize, double[] predictedState, double[] predictedScaled, Array2DRowRealMatrix predictedNordsieck, boolean isForward, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper equationsMapper) Finalize the step.protected abstract AdamsStateInterpolatorAdamsIntegrator.finalizeStep(double stepSize, double[] predictedState, double[] predictedScaled, Array2DRowRealMatrix predictedNordsieck, boolean isForward, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper equationsMapper) Finalize the step.protected AdamsStateInterpolatorAdamsMoultonIntegrator.finalizeStep(double stepSize, double[] predictedState, double[] predictedScaled, Array2DRowRealMatrix predictedNordsieck, boolean isForward, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper equationsMapper) Finalize the step.AdamsIntegrator.updateHighOrderDerivativesPhase1(Array2DRowRealMatrix highOrder) Update the high order scaled derivatives for Adams integrators (phase 1).AdamsNordsieckTransformer.updateHighOrderDerivativesPhase1(Array2DRowRealMatrix highOrder) Update the high order scaled derivatives for Adams integrators (phase 1).voidAdamsIntegrator.updateHighOrderDerivativesPhase2(double[] start, double[] end, Array2DRowRealMatrix highOrder) Update the high order scaled derivatives Adams integrators (phase 2).voidAdamsNordsieckTransformer.updateHighOrderDerivativesPhase2(double[] start, double[] end, Array2DRowRealMatrix highOrder) Update the high order scaled derivatives Adams integrators (phase 2). -
Uses of Array2DRowRealMatrix in org.hipparchus.ode.nonstiff.interpolators
Methods in org.hipparchus.ode.nonstiff.interpolators that return Array2DRowRealMatrixModifier and TypeMethodDescriptionAdamsStateInterpolator.getNordsieck()Get the Nordsieck vector.Methods in org.hipparchus.ode.nonstiff.interpolators with parameters of type Array2DRowRealMatrixModifier and TypeMethodDescriptionstatic ODEStateAndDerivativeAdamsStateInterpolator.taylor(EquationsMapper equationsMapper, ODEStateAndDerivative reference, double time, double stepSize, double[] scaled, Array2DRowRealMatrix nordsieck) Estimate state by applying Taylor formula.Constructors in org.hipparchus.ode.nonstiff.interpolators with parameters of type Array2DRowRealMatrixModifierConstructorDescriptionAdamsStateInterpolator(double stepSize, ODEStateAndDerivative reference, double[] scaled, Array2DRowRealMatrix nordsieck, boolean isForward, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper equationsMapper) Simple constructor.