Function argmin_axis_device

Source
pub fn argmin_axis_device(
    a: impl AsRef<Array>,
    axis: i32,
    keep_dims: impl Into<Option<bool>>,
    stream: impl AsRef<Stream>,
) -> Result<Array>
Expand description

Indices of the minimum values along the axis.

See [argmin_all] for the flattened array.

ยงParams

  • a: The input array.
  • axis: Axis to reduce over.
  • keep_dims: Keep reduced axes as singleton dimensions, defaults to False.