cupy.amin

cupy.amin(a, axis=None, out=None, keepdims=False, dtype=None)[source]

Returns the minimum of an array or the minimum along an axis.

Note

When at least one element is NaN, the corresponding min value will be NaN.

Parameters:
  • a (cupy.ndarray) – Array to take the minimum.
  • axis (int) – Along which axis to take the minimum. The flattened array is used by default.
  • out (cupy.ndarray) – Output array.
  • keepdims (bool) – If True, the axis is remained as an axis of size one.
  • dtype – Data type specifier.
Returns:

The minimum of a, along the axis if specified.

Return type:

cupy.ndarray

See also

numpy.amin()