Returns the LU decomposition of the given matrix.
Examples:
(use 'incanter.core)
(def foo (matrix (range 9) 3))
(decomp-lu foo)
Returns:
a map containing:
:L -- the lower triangular factor
:U -- the upper triangular factor
References:
http://en.wikipedia.org/wiki/LU_decomposition
http://incanter.org/docs/parallelcolt/api/cern/colt/matrix/tdouble/algo/decomposition/DoubleLUDecomposition.html
Comments top
No comments for decomp-lu. Log in to add a comment.