module documentation

Undocumented

Function argmax Array API compatible wrapper for np.argmax.
Function argmin Array API compatible wrapper for np.argmin.
Function nonzero Array API compatible wrapper for np.nonzero.
Function where Array API compatible wrapper for np.where.
def argmax(x, /, *, axis=None, keepdims=False):

Array API compatible wrapper for np.argmax.

See its docstring for more information.

Parameters
x:ArrayUndocumented
axis:Optional[int]Undocumented
keepdims:boolUndocumented
Returns
ArrayUndocumented
def argmin(x, /, *, axis=None, keepdims=False):

Array API compatible wrapper for np.argmin.

See its docstring for more information.

Parameters
x:ArrayUndocumented
axis:Optional[int]Undocumented
keepdims:boolUndocumented
Returns
ArrayUndocumented
def nonzero(x, /):

Array API compatible wrapper for np.nonzero.

See its docstring for more information.

Parameters
x:ArrayUndocumented
Returns
Tuple[Array, ...]Undocumented
def where(condition, x1, x2, /):

Array API compatible wrapper for np.where.

See its docstring for more information.

Parameters
condition:ArrayUndocumented
x1:ArrayUndocumented
x2:ArrayUndocumented
Returns
ArrayUndocumented