mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-16 15:20:24 +01:00
Merge branch 'develop' into documentation
This commit is contained in:
commit
6fa3b1a201
1 changed files with 3 additions and 1 deletions
|
@ -200,7 +200,9 @@ def inv(x):
|
|||
|
||||
|
||||
def cholesky(x):
|
||||
"""Cholesky decomposition of Obs or CObs valued matrices."""
|
||||
"""Cholesky decomposition of Obs valued matrices."""
|
||||
if any(isinstance(o, CObs) for o in x.ravel()):
|
||||
raise Exception("Cholesky decomposition is not implemented for CObs.")
|
||||
return _mat_mat_op(anp.linalg.cholesky, x)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue