Square Matrix LU Decomposition

Lower–upper (LU) decomposition or factorization factors a matrix as the product of a lower triangular matrix and an upper triangular matrix. In this specific case, the input is a square n×nn \times n matrix

Parameters

  • nn: dimension of square matrix

Filters

Computational Model

Randomization

Approximation

Algorithms Table

Displaying 6 of 6 algorithms

See more
Press, Teukolsky, Flannery2007O(n3)O(n^3)O~(n)\tilde{O}(n)
Okunev; Johnson1997O(n3)O(n^3)O(1)O(1)
Closed formula1975O(n6)O(n^6)O(n2)O(n^2)
Bunch; Hopcroft1974O(n2.376)O(n^{2.376})O~(n2)\tilde{O}(n^2)
Crout algorithm1941O(n3)O(n^3)O~(1)\tilde{O}(1)
Doolittle Algorithm1878O(n3)O(n^3)O~(1)\tilde{O}(1)

Reductions Table

Insuffient Data to display table

Other relevant algorithms

Insuffient Data to display table