Skip to content

Commit 3854e74

Browse files
authored
Merge pull request #677 from lucascolley/main
2 parents e72b3ca + 520d30c commit 3854e74

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/array_api_stubs/_2022_12/linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def cholesky(x: array, /, *, upper: bool = False) -> array:
1818
The upper Cholesky decomposition is defined similarly
1919
2020
.. math::
21-
x = UU^{H} \qquad \text{U $\in\ \mathbb{K}^{n \times n}$}
21+
x = U^{H}U \qquad \text{U $\in\ \mathbb{K}^{n \times n}$}
2222
2323
where :math:`U` is an upper triangular matrix.
2424

src/array_api_stubs/_draft/linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def cholesky(x: array, /, *, upper: bool = False) -> array:
1818
The upper Cholesky decomposition is defined similarly
1919
2020
.. math::
21-
x = UU^{H} \qquad \text{U $\in\ \mathbb{K}^{n \times n}$}
21+
x = U^{H}U \qquad \text{U $\in\ \mathbb{K}^{n \times n}$}
2222
2323
where :math:`U` is an upper triangular matrix.
2424

0 commit comments

Comments
 (0)