Skip to content

Commit f8bbcd4

Browse files
kgryteleofang
andauthored
Disallow providing a stack of vectors to linalg.solve (#305)
* Disallow providing a stack of vectors * Update copy Co-authored-by: Leo Fang <[email protected]> Co-authored-by: Leo Fang <[email protected]>
1 parent 9efd1a3 commit f8bbcd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/extensions/linear_algebra_functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ Whether an array library explicitly checks whether an input array is full rank i
484484

485485
- **x2**: _&lt;array&gt;_
486486

487-
- ordinate (or "dependent variable") array `B`. If `x2` has shape `(..., M)`, `x2` is equivalent to an array having shape `(..., M, 1)`, and `shape(x2)` must be compatible with `shape(x1)[:-1]` (see {ref}`broadcasting`). If `x2` has shape `(..., M, K)`, each column `k` defines a set of ordinate values for which to compute a solution, and `shape(x2)[:-1]` must be compatible with `shape(x1)[:-1]` (see {ref}`broadcasting`). Should have a floating-point data type.
487+
- ordinate (or "dependent variable") array `B`. If `x2` has shape `(M,)`, `x2` is equivalent to an array having shape `(..., M, 1)`. If `x2` has shape `(..., M, K)`, each column `k` defines a set of ordinate values for which to compute a solution, and `shape(x2)[:-1]` must be compatible with `shape(x1)[:-1]` (see {ref}`broadcasting`). Should have a floating-point data type.
488488

489489
#### Returns
490490

0 commit comments

Comments
 (0)