cupy.argmin#
- cupy.argmin(a, axis=None, dtype=None, out=None, keepdims=False)[source]#
Returns the indices of the minimum along an axis.
- Parameters:
a (cupy.ndarray) – Array to take argmin.
axis (int) – Along which axis to find the minimum.
ais flattened by default.dtype – Data type specifier.
out (cupy.ndarray) – Output array.
keepdims (bool) – If
True, the axisaxisis preserved as an axis of length one.
- Returns:
The indices of the minimum of
aalong an axis.- Return type:
Note
dtypeandkeepdimarguments are specific to CuPy. They are not in NumPy.Note
axisargument accepts a tuple of ints, but this is specific to CuPy. NumPy does not support it.See also