We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed3225 commit 2d289f0Copy full SHA for 2d289f0
numpy/linalg/linalg.py
@@ -687,8 +687,10 @@ def cholesky(a):
687
Return the Cholesky decomposition, `L * L.H`, of the square matrix `a`,
688
where `L` is lower-triangular and .H is the conjugate transpose operator
689
(which is the ordinary transpose if `a` is real-valued). `a` must be
690
- Hermitian (symmetric if real-valued) and positive-definite. Only `L` is
691
- actually returned.
+ Hermitian (symmetric if real-valued) and positive-definite. No
+ checking is performed to verify whether `a` is Hermitian or not.
692
+ In addition, only the lower-triangular and diagonal elements of `a`
693
+ are used. Only `L` is actually returned.
694
695
Parameters
696
----------
0 commit comments