Interface LUDecomposition

  • All Known Implementing Classes:
    Doolittle, GaussianElimination4SquareMatrix, LU

    public interface LUDecomposition
    LU decomposition decomposes an n x n matrix A so that P * A = L * U. P is an n x n permutation matrix. L is an n x n lower triangular matrix. U is an n x n upper triangular matrix. That is,
    
     P.multiply(A) == L.multiply(U)
     
    See Also:
    Wikipedia: LU decomposition