Skip to content

Commit b9ae187

Browse files
authored
Remove raises section for matrix_power (#219)
1 parent e14d9a7 commit b9ae187

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

spec/extensions/linear_algebra_functions.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -323,11 +323,6 @@ Raises a square matrix (or a stack of square matrices) `x` to an integer power `
323323

324324
- if `n` is equal to zero, an array containing the identity matrix for each square matrix. If `n` is less than zero, an array containing the inverse of each square matrix raised to the absolute value of `n`, provided that each square matrix is invertible. If `n` is greater than zero, an array containing the result of raising each square matrix to the power `n`. The returned array must have the same shape as `x` and a floating-point data type determined by {ref}`type-promotion`.
325325

326-
#### Raises
327-
328-
- if the innermost two dimensions of `x` are not the same size (i.e., form square matrices).
329-
- if `n` is less than zero and a square matrix is not invertible.
330-
331326
(function-linalg-matrix_rank)=
332327
### linalg.matrix_rank(x, /, *, rtol=None)
333328

@@ -648,4 +643,4 @@ Alias for {ref}`function-transpose`.
648643
(function-linalg-vecdot)=
649644
### linalg.vecdot(x1, x2, /, *, axis=None)
650645
651-
Alias for {ref}`function-vecdot`.
646+
Alias for {ref}`function-vecdot`.

0 commit comments

Comments
 (0)