Uses of Class
org.apache.commons.math3.linear.Array2DRowRealMatrix
-
Packages that use Array2DRowRealMatrix Package Description org.apache.commons.math3.linear Linear algebra support.org.apache.commons.math3.ode This package provides classes to solve Ordinary Differential Equations problems.org.apache.commons.math3.ode.nonstiff This package provides classes to solve non-stiff Ordinary Differential Equations problems.org.apache.commons.math3.ode.sampling This package provides classes to handle sampling steps during Ordinary Differential Equations integration.org.apache.commons.math3.optim.linear Optimization algorithms for linear constrained problems.org.apache.commons.math3.optim.nonlinear.scalar.noderiv This package provides optimization algorithms that do not require derivatives.org.apache.commons.math3.optimization.direct This package provides optimization algorithms that don't require derivatives. -
-
Uses of Array2DRowRealMatrix in org.apache.commons.math3.linear
Methods in org.apache.commons.math3.linear that return Array2DRowRealMatrix Modifier and Type Method Description Array2DRowRealMatrixArray2DRowRealMatrix. add(Array2DRowRealMatrix m)Compute the sum ofthisandm.static Array2DRowRealMatrixMatrixUtils. bigFractionMatrixToRealMatrix(FieldMatrix<BigFraction> m)static Array2DRowRealMatrixMatrixUtils. fractionMatrixToRealMatrix(FieldMatrix<Fraction> m)(package private) Array2DRowRealMatrixMatrixUtils.BigFractionMatrixConverter. getConvertedMatrix()Get the converted matrix.(package private) Array2DRowRealMatrixMatrixUtils.FractionMatrixConverter. getConvertedMatrix()Get the converted matrix.Array2DRowRealMatrixArray2DRowRealMatrix. multiply(Array2DRowRealMatrix m)Returns the result of postmultiplyingthisbym.Array2DRowRealMatrixArray2DRowRealMatrix. subtract(Array2DRowRealMatrix m)Returnsthisminusm.Methods in org.apache.commons.math3.linear with parameters of type Array2DRowRealMatrix Modifier and Type Method Description Array2DRowRealMatrixArray2DRowRealMatrix. add(Array2DRowRealMatrix m)Compute the sum ofthisandm.Array2DRowRealMatrixArray2DRowRealMatrix. multiply(Array2DRowRealMatrix m)Returns the result of postmultiplyingthisbym.Array2DRowRealMatrixArray2DRowRealMatrix. subtract(Array2DRowRealMatrix m)Returnsthisminusm. -
Uses of Array2DRowRealMatrix in org.apache.commons.math3.ode
Fields in org.apache.commons.math3.ode declared as Array2DRowRealMatrix Modifier and Type Field Description protected Array2DRowRealMatrixMultistepIntegrator. nordsieckNordsieck matrix of the higher scaled derivatives.Methods in org.apache.commons.math3.ode that return Array2DRowRealMatrix Modifier and Type Method Description protected abstract Array2DRowRealMatrixMultistepIntegrator. initializeHighOrderDerivatives(double h, double[] t, double[][] y, double[][] yDot)Initialize the high order scaled derivatives at step start.Array2DRowRealMatrixMultistepIntegrator.NordsieckTransformer. initializeHighOrderDerivatives(double h, double[] t, double[][] y, double[][] yDot)Deprecated.Initialize the high order scaled derivatives at step start. -
Uses of Array2DRowRealMatrix in org.apache.commons.math3.ode.nonstiff
Fields in org.apache.commons.math3.ode.nonstiff declared as Array2DRowRealMatrix Modifier and Type Field Description private Array2DRowRealMatrixAdamsNordsieckTransformer. updateUpdate matrix for the higher order derivatives h2/2 y'', h3/6 y''' ...Methods in org.apache.commons.math3.ode.nonstiff that return Array2DRowRealMatrix Modifier and Type Method Description protected Array2DRowRealMatrixAdamsIntegrator. initializeHighOrderDerivatives(double h, double[] t, double[][] y, double[][] yDot)Initialize the high order scaled derivatives at step start.Array2DRowRealMatrixAdamsNordsieckTransformer. initializeHighOrderDerivatives(double h, double[] t, double[][] y, double[][] yDot)Initialize the high order scaled derivatives at step start.Array2DRowRealMatrixAdamsIntegrator. updateHighOrderDerivativesPhase1(Array2DRowRealMatrix highOrder)Update the high order scaled derivatives for Adams integrators (phase 1).Array2DRowRealMatrixAdamsNordsieckTransformer. updateHighOrderDerivativesPhase1(Array2DRowRealMatrix highOrder)Update the high order scaled derivatives for Adams integrators (phase 1).Methods in org.apache.commons.math3.ode.nonstiff with parameters of type Array2DRowRealMatrix Modifier and Type Method Description Array2DRowRealMatrixAdamsIntegrator. updateHighOrderDerivativesPhase1(Array2DRowRealMatrix highOrder)Update the high order scaled derivatives for Adams integrators (phase 1).Array2DRowRealMatrixAdamsNordsieckTransformer. 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.apache.commons.math3.ode.sampling
Fields in org.apache.commons.math3.ode.sampling declared as Array2DRowRealMatrix Modifier and Type Field Description private Array2DRowRealMatrixNordsieckStepInterpolator. nordsieckNordsieck vector.Methods in org.apache.commons.math3.ode.sampling with parameters of type Array2DRowRealMatrix Modifier and Type Method Description voidNordsieckStepInterpolator. reinitialize(double time, double stepSize, double[] scaledDerivative, Array2DRowRealMatrix nordsieckVector)Reinitialize the instance. -
Uses of Array2DRowRealMatrix in org.apache.commons.math3.optim.linear
Fields in org.apache.commons.math3.optim.linear declared as Array2DRowRealMatrix Modifier and Type Field Description private Array2DRowRealMatrixSimplexTableau. tableauSimple tableau.Methods in org.apache.commons.math3.optim.linear that return Array2DRowRealMatrix Modifier and Type Method Description protected Array2DRowRealMatrixSimplexTableau. createTableau(boolean maximize)Create the tableau by itself. -
Uses of Array2DRowRealMatrix in org.apache.commons.math3.optim.nonlinear.scalar.noderiv
Fields in org.apache.commons.math3.optim.nonlinear.scalar.noderiv declared as Array2DRowRealMatrix Modifier and Type Field Description private Array2DRowRealMatrixBOBYQAOptimizer. bMatrixLast n columns of matrix H (where n is the dimension of the problem).private Array2DRowRealMatrixBOBYQAOptimizer. interpolationPointsCoordinates of the interpolation points relative toBOBYQAOptimizer.originShift.private Array2DRowRealMatrixBOBYQAOptimizer. zMatrixFactorization of the leading npt square submatrix of H, this factorization being Z ZT, which provides both the correct rank and positive semi-definiteness. -
Uses of Array2DRowRealMatrix in org.apache.commons.math3.optimization.direct
Fields in org.apache.commons.math3.optimization.direct declared as Array2DRowRealMatrix Modifier and Type Field Description private Array2DRowRealMatrixBOBYQAOptimizer. bMatrixDeprecated.Last n columns of matrix H (where n is the dimension of the problem).private Array2DRowRealMatrixBOBYQAOptimizer. interpolationPointsDeprecated.Coordinates of the interpolation points relative toBOBYQAOptimizer.originShift.private Array2DRowRealMatrixBOBYQAOptimizer. zMatrixDeprecated.Factorization of the leading npt square submatrix of H, this factorization being Z ZT, which provides both the correct rank and positive semi-definiteness.
-