Wiki

Clone wiki

symja_android_library / Symbols / LUDecomposition

LUDecomposition

LUDecomposition(matrix)
calculate the LUP-decomposition of a square matrix.

See:

Examples

>>> LUDecomposition[{{1, 2, 3}, {3, 4, 11}, {13, 7, 8}}]
{{{1,0,0},
  {3,1,0},
  {13,19/2,1}},
 {{1,2,3},
  {0,-2,2},
  {0,0,-50}},{1,2,3}}

Related terms

CharacteristicPolynomial, ConjugateTranspose, Det, DiagonalMatrix, Dot, Eigenvalues, Eigenvectors, HilbertMatrix, IdentityMatrix, Inverse, JacobiMatrix, LinearSolve, MatrixPower, MatrixQ,MatrixRank, NullSpace, SingularValueDecomposition, Tr, Transpose, VandermondeMatrix, VectorQ

Updated