This module contains algebraic functions powered by the Cholesky matrix decomposition (as provided by the <Eigen/Cholesky> include).
Compute Cholesky decomposition of matrix x (which must be square, Hermitian and positive-definite) so that x = out * out.H (out.H being conjugate transpose of out)
Parameters: |
|
---|---|
Raises : | ValueError if argument dimensions aren’t appropriate for this operation or if arguments are otherwise invalid. |
Raises : | TypeError if you pass an argument that doesn’t support buffer interface (e.g. a plain list). Use preferrably a Cython memoryview and resort to Python array, Cython array or a NumPy array. |
Return type: |