Skip to content

Commit ad4a3d1

Browse files
authored
Merge pull request #661 from steff456/fix-qr
Fix invalid latex in `qr` function API docstring
2 parents 50c87f0 + b08480f commit ad4a3d1

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
@@ -473,7 +473,7 @@ def qr(
473473
474474
where :math:`Q \in\ \mathbb{K}^{m \times n}` and :math:`R \in\ \mathbb{K}^{n \times n}`.
475475
476-
The reduced QR decomposition equals with the complete QR decomposition when :math:`n \qeq m` (wide matrix).
476+
The reduced QR decomposition equals with the complete QR decomposition when :math:`n \geq m` (wide matrix).
477477
478478
When ``x`` is a stack of matrices, the function must compute the QR decomposition for each matrix in the stack.
479479

src/array_api_stubs/_draft/linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ def qr(
473473
474474
where :math:`Q \in\ \mathbb{K}^{m \times n}` and :math:`R \in\ \mathbb{K}^{n \times n}`.
475475
476-
The reduced QR decomposition equals with the complete QR decomposition when :math:`n \qeq m` (wide matrix).
476+
The reduced QR decomposition equals with the complete QR decomposition when :math:`n \geq m` (wide matrix).
477477
478478
When ``x`` is a stack of matrices, the function must compute the QR decomposition for each matrix in the stack.
479479

0 commit comments

Comments
 (0)