Skip to content
This repository was archived by the owner on May 21, 2020. It is now read-only.
Florian Rappl edited this page Dec 21, 2014 · 2 revisions

chol

In linear algebra, the Cholesky decomposition or Cholesky triangle is a decomposition of a Hermitian, positive-definite matrix into the product of a lower triangular matrix and its conjugate transpose.

References

chol(M)

Computes the Cholesky decomposition of a given SPD matrix and returns the L matrix which is given by L * L' = M, where L' is the adjungate matrix of L.

Argument M

Matrix

Returns 1. entry

Matrix

Example

chol([4, 12, -16; 12, 37, -43; -16, -43, 98])

Computes the matrix L of the given matrix.

Clone this wiki locally