Uses of Class
rocks.palaiologos.maja.matrix.DoubleMatrix
Packages that use DoubleMatrix
-
Uses of DoubleMatrix in rocks.palaiologos.maja.matrix
Methods in rocks.palaiologos.maja.matrix that return DoubleMatrixModifier and TypeMethodDescriptionDoubleMatrix.copy()
DoubleEigenvalueDecompositionResult.D()
Returns the value of theD
record component.DoubleMatrix.dot
(Matrix<Double> another, BiFunction<Double, Double, Double> scalar, BiFunction<Double, Double, Double> vector) DoubleQRDecompositionResult.h()
The householder matrix; lower trapezoidal matrix whose columns define the reflections.static DoubleMatrix
DoubleMatrix.identity
(int n) Generate an identity matrix of the given order.static DoubleMatrix
DoubleMatrix.invert()
Invert the matrix.DoubleMatrix.invert
(DoubleLUPDecompositionResult r) Invert the matrix given the LUP decomposition of the current matrix.DoubleMatrix.invert
(DoubleQRDecompositionResult r) Invert the matrix given the QR decomposition of the current matrix.DoubleCholeskyDecompositonResult.l()
DoubleLUDecompositionResult.lower()
DoubleLUPDecompositionResult.lower()
Get the lower triangular matrix.DoubleMatrix.product
(DoubleMatrix other) Compute the standard matrix product.DoubleQRDecompositionResult.q()
The Q matrix.DoubleQRDecompositionResult.r()
The R matrix.DoubleMatrix.reverseFirst()
DoubleMatrix.reverseLast()
DoubleCholeskyDecompositonResult.solve
(DoubleMatrix B) Solve A * X = B.DoubleLUPDecompositionResult.solve
(DoubleMatrix B) Solve A * X = B.DoubleMatrix.solve
(DoubleMatrix B) Solve A * X = BDoubleQRDecompositionResult.solve
(DoubleMatrix B) Least squares solution of A*X = B.DoubleMatrix.transpose()
DoubleSVDResult.U()
Returns the value of theU
record component.DoubleLUDecompositionResult.upper()
DoubleLUPDecompositionResult.upper()
Get the upper triangular matrix.DoubleEigenvalueDecompositionResult.V()
Returns the value of theV
record component.DoubleSVDResult.V()
Returns the value of theV
record component.Methods in rocks.palaiologos.maja.matrix with parameters of type DoubleMatrixModifier and TypeMethodDescriptionDoubleMatrix.product
(DoubleMatrix other) Compute the standard matrix product.DoubleCholeskyDecompositonResult.solve
(DoubleMatrix B) Solve A * X = B.DoubleLUPDecompositionResult.solve
(DoubleMatrix B) Solve A * X = B.DoubleMatrix.solve
(DoubleMatrix B) Solve A * X = BDoubleQRDecompositionResult.solve
(DoubleMatrix B) Least squares solution of A*X = B.Constructors in rocks.palaiologos.maja.matrix with parameters of type DoubleMatrixModifierConstructorDescriptionCreates an instance of aDoubleEigenvalueDecompositionResult
record class.DoubleLUPDecompositionResult
(DoubleMatrix lower, DoubleMatrix upper, int[] permutation, boolean nonsingular, double determinant, int n, int m, DoubleMatrix LU) DoubleQRDecompositionResult
(DoubleMatrix q, DoubleMatrix r, DoubleMatrix h, boolean fullrank, int n, int m, DoubleMatrix QR, double[] Rdiag) DoubleSVDResult
(int rank, double norm, double conditionNumber, double inverseConditionNumber, double[] singularValues, DoubleMatrix U, DoubleMatrix V) Creates an instance of aDoubleSVDResult
record class.