Skip to content

Commit 8cf015e

Browse files
authored
Add complex number support to linalg.outer (#560)
1 parent 8f4327c commit 8cf015e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/API_specification/array_api/linalg.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -300,9 +300,9 @@ def outer(x1: array, x2: array, /) -> array:
300300
Parameters
301301
----------
302302
x1: array
303-
first one-dimensional input array of size ``N``. Should have a real-valued data type.
303+
first one-dimensional input array of size ``N``. Must have a numeric data type.
304304
x2: array
305-
second one-dimensional input array of size ``M``. Should have a real-valued data type.
305+
second one-dimensional input array of size ``M``. Must have a numeric data type.
306306
307307
Returns
308308
-------

0 commit comments

Comments
 (0)