Uses of Class
dev.nm.algebra.linear.matrix.doubles.matrixtype.PermutationMatrix
-
-
Uses of PermutationMatrix in dev.nm.algebra.linear.matrix.doubles.factorization.gaussianelimination
Methods in dev.nm.algebra.linear.matrix.doubles.factorization.gaussianelimination that return PermutationMatrix Modifier and Type Method Description PermutationMatrix
GaussianElimination. P()
Get the permutation matrix, P, such that P * A = L * U.PermutationMatrix
GaussianElimination4SquareMatrix. P()
-
Uses of PermutationMatrix in dev.nm.algebra.linear.matrix.doubles.factorization.qr
Methods in dev.nm.algebra.linear.matrix.doubles.factorization.qr that return PermutationMatrix Modifier and Type Method Description PermutationMatrix
GramSchmidt. P()
PermutationMatrix
HouseholderQR. P()
Gets P, the pivoting matrix in the QR decomposition.PermutationMatrix
QR. P()
PermutationMatrix
QRDecomposition. P()
Get P, the pivoting matrix in the QR decomposition. -
Uses of PermutationMatrix in dev.nm.algebra.linear.matrix.doubles.factorization.triangle
Methods in dev.nm.algebra.linear.matrix.doubles.factorization.triangle that return PermutationMatrix Modifier and Type Method Description PermutationMatrix
Doolittle. P()
PermutationMatrix
LU. P()
PermutationMatrix
LUDecomposition. P()
Get the permutation matrix P as in P * A = L * U. -
Uses of PermutationMatrix in dev.nm.algebra.linear.matrix.doubles.matrixtype
Methods in dev.nm.algebra.linear.matrix.doubles.matrixtype that return PermutationMatrix Modifier and Type Method Description PermutationMatrix
PermutationMatrix. deepCopy()
PermutationMatrix
PermutationMatrix. ONE()
PermutationMatrix
PermutationMatrix. t()
The transpose of a permutation matric is the same as its inverse.Constructors in dev.nm.algebra.linear.matrix.doubles.matrixtype with parameters of type PermutationMatrix Constructor Description PermutationMatrix(PermutationMatrix P)
Copy constructor.
-