pub fn argmax_all(
a: impl AsRef<Array>,
keep_dims: impl Into<Option<bool>>,
) -> Result<Array>
Expand description
Indices of the maximum value over the entire array.
ยงParams
a
: The input array.keep_dims
: Keep reduced axes as singleton dimensions, defaults to False.