chol
Cholesky factorization.
📝Syntax
F = chol(A)
📥Input Arguments
Parameter Description
A a matrix: square and symmetric positive definite.
📤Output Arguments
Parameter Description
F Cholesky factor.
📄Description

F = chol(A) factorizes symmetric positive definite matrix A into an upper triangular F that satisfies A = F' * F.

💡Examples
A = [10 0 10; 0 20 0; 10 0 30];
F = chol(A)
🔗See Also
det
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub