luDecomp

Computes LU factorization of a general 'M x N' matrix 'A' using partial pivoting with row interchanges. The factorization has the form: \A = P * L * U Where P is a permutation matrix, L is lower triangular with unit diagonal elements (lower trapezoidal if m > n), and U is upper triangular (upper trapezoidal if m < n).

luDecomp
(
Flag!"allowDestroy" allowDestroy = No.allowDestroy
Iterator
SliceKind kind
)
(
Slice!(Iterator, 2, kind) a
)

Parameters

allowDestroy

flag to delete the source matrix.

a Slice!(Iterator, 2, kind)

input 'M x N' matrix for factorization.

Return Value

Type: auto

Meta