CholeskyDecomposition class
Properties
-
checkMatrix
→ Matrix
-
Checks the decomposition by reconstructing the original matrix.
Returns the reconstructed matrix as L * L.transpose().
no setteroverride
-
hashCode
→ int
-
The hash code for this object.
no setterinherited
-
isLowerTriangular
→ bool
-
Checks if L is a lower triangular matrix.
no setter
-
isPositiveDefiniteMatrix
→ bool
-
Checks if the matrix is positive definite.
no setter
-
L
→ Matrix
-
final
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
solve(Matrix b)
→ Matrix
-
Solves the linear system Ax = b using Cholesky decomposition, where A is the original matrix.
The method assumes that the original matrix A is positive definite.
override
-
toString()
→ String
-
A string representation of this object.
override