<< bandwidth | Linear algebra | cond >> |
F = chol(A) |
a matrix: square and symmetric positive definite.
Cholesky factor.
F = chol(A) factorizes symmetric positive definite matrix A into an upper triangular F that satisfies A = F' * F.
A = [10 0 10; 0 20 0; 10 0 30];
F = chol(A)
det.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET