(searching-functions)=
Array API specification for functions for searching arrays.
A conforming implementation of the array API standard must provide and support the following functions adhering to the following conventions.
- Positional parameters must be positional-only parameters. Positional-only parameters have no externally-usable name. When a function accepting positional-only parameters is called, positional arguments are mapped to these parameters based solely on their order.
- Optional parameters must be keyword-only arguments.
- Broadcasting semantics must follow the semantics defined in {ref}
broadcasting
. - Unless stated otherwise, functions must support the data types defined in {ref}
data-types
. - Unless stated otherwise, functions must adhere to the type promotion rules defined in {ref}
type-promotion
.
(function-argmax)=
Returns the indices of the maximum values along a specified axis. When the maximum value occurs multiple times, only the indices corresponding to the first occurrence are returned.
-
x: <array>
- input array. Should have a numeric data type.
-
axis: Optional[ int ]
- axis along which to search. If
None
, the function must return the index of the maximum value of the flattened array. Default:None
.
- axis along which to search. If
-
keepdims: bool
- If
True
, the reduced axes (dimensions) must be included in the result as singleton dimensions, and, accordingly, the result must be compatible with the input array (see {ref}broadcasting
). Otherwise, ifFalse
, the reduced axes (dimensions) must not be included in the result. Default:False
.
- If
-
out: <array>
- if
axis
isNone
, a zero-dimensional array containing the index of the first occurrence of the maximum value; otherwise, a non-zero-dimensional array containing the indices of the maximum values. The returned array must have be the default array index data type.
- if
(function-argmin)=
Returns the indices of the minimum values along a specified axis. When the minimum value occurs multiple times, only the indices corresponding to the first occurrence are returned.
-
x: <array>
- input array. Should have a numeric data type.
-
axis: Optional[ int ]
- axis along which to search. If
None
, the function must return the index of the minimum value of the flattened array. Default:None
.
- axis along which to search. If
-
keepdims: bool
- If
True
, the reduced axes (dimensions) must be included in the result as singleton dimensions, and, accordingly, the result must be compatible with the input array (see {ref}broadcasting
). Otherwise, ifFalse
, the reduced axes (dimensions) must not be included in the result. Default:False
.
- If
-
out: <array>
- if
axis
isNone
, a zero-dimensional array containing the index of the first occurrence of the minimum value; otherwise, a non-zero-dimensional array containing the indices of the minimum values. The returned array must have the default array index data type.
- if
(function-nonzero)=
:::{admonition} Data-dependent output shape :class: important
The shape of the output array for this function depends on the data values in the input array; hence, array libraries which build computation graphs (e.g., JAX, Dask, etc.) may find this function difficult to implement without knowing array values. Accordingly, such libraries may choose to omit this function. See {ref}data-dependent-output-shapes
section for more details.
:::
Returns the indices of the array elements which are non-zero.
-
x: <array>
- input array. Must have a positive rank. If
x
is zero-dimensional, the function must raise an exception.
- input array. Must have a positive rank. If
-
out: Tuple[ <array>, ... ]
- a tuple of
k
arrays, one for each dimension ofx
and each of sizen
(wheren
is the total number of non-zero elements), containing the indices of the non-zero elements in that dimension. The indices must be returned in row-major, C-style order. The returned array must have the default array index data type.
- a tuple of
(function-where)=
Returns elements chosen from x1
or x2
depending on condition
.
-
condition: <array>
- when
True
, yieldx1_i
; otherwise, yieldx2_i
. Must be compatible withx1
andx2
(see {ref}broadcasting
).
- when
-
x1: <array>
- first input array. Must be compatible with
condition
andx2
(see {ref}broadcasting
).
- first input array. Must be compatible with
-
x2: <array>
- second input array. Must be compatible with
condition
andx1
(see {ref}broadcasting
).
- second input array. Must be compatible with
-
out: <array>
- an array with elements from
x1
wherecondition
isTrue
, and elements fromx2
elsewhere. The returned array must have a data type determined by {ref}type-promotion
rules with the arraysx1
andx2
.
- an array with elements from