Skip to content

Commit da0c933

Browse files
committed
Update copy
1 parent 89c4753 commit da0c933

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/API_specification/linear_algebra_functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ Computes the qr factorization of a matrix (or a stack of matrices), where `q` is
288288
- first element must be an array whose shape depends on the value of `mode` and contain orthonormal matrices. If `mode` is `'complete'`, the array must have shape `(..., M, M)`. If `mode` is `'reduced'`, the array must have shape `(..., M, K)`, where `K = min(M, N)`. The first `x.ndim-2` dimensions must have the same size as those of the input `x`.
289289
- second element must be an array whose shape depends on the value of `mode` and contain upper-triangular matrices. If `mode` is `'complete'`, the array must have shape `(..., M, M)`. If `mode` is `'reduced'`, the array must have shape `(..., K, N)`, where `K = min(M, N)`. The first `x.ndim-2` dimensions must have the same size as those of the input `x`.
290290

291-
Each returned array must have a floating-point data type determined by {ref}`type-promotion` rules.
291+
Each returned array must have a floating-point data type determined by {ref}`type-promotion`.
292292

293293
(function-slogdet)=
294294
### slogdet()

0 commit comments

Comments
 (0)