We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 907b783 commit 818448bCopy full SHA for 818448b
maths/cholesky_decomposition.py
@@ -66,7 +66,7 @@ def cholesky_decomposition(A: np.ndarray) -> np.ndarray:
66
67
def solve_cholesky(L: np.ndarray, Y: np.ndarray) -> np.ndarray:
68
"""Given a Cholesky decomposition L L^T = A of a matrix A, solve the
69
- system of equations A X = Y where B is either a matrix or a vector.
+ system of equations A X = Y where Y is either a matrix or a vector.
70
71
>>> L = np.array([[2, 0], [3, 4]], dtype=float)
72
>>> Y = np.array([[22, 54], [81, 193]], dtype=float)
0 commit comments