pub fn scatter_min_single(
a: impl AsRef<Array>,
indices: impl AsRef<Array>,
updates: impl AsRef<Array>,
axis: i32,
) -> Result<Array>Expand description
Scatter-min updates to the array at the given indices along a single axis.
Takes the minimum of the update values and existing values at the specified indices.
ยงParams
a: Input arrayindices: Indices array specifying positions to scatter intoupdates: Values to compareaxis: The axis along which to scatter