Class RealCholesky

java.lang.Object
org.flag4j.linalg.decompositions.chol.Cholesky<Matrix>
org.flag4j.linalg.decompositions.chol.RealCholesky
All Implemented Interfaces:
Decomposition<Matrix>

public final class RealCholesky extends Cholesky<Matrix>

An instance of this class allows for the computation of a Cholesky decomposition for a real dense matrix.

Given a symmetric positive-definite matrix A, the Cholesky decomposition will decompose it into A=LL<sup>T</sup> where L is a lower triangular matrix and L<sup>T</sup> is the transpose of L.