npstreams.imin
- npstreams.imin(arrays, axis, ignore_nan=False)
Minimum of a stream of arrays along an axis.
- Parameters:
arrays (iterable) – Arrays to be reduced.
axis (int or None, optional) – Axis along which the minimum is found. The default is to find the minimum along the ‘stream axis’, as if all arrays in
arraywere stacked along a new dimension. Ifaxis = None, arrays inarraysare flattened before reduction.ignore_nan (bool, optional) – If True, NaNs are ignored. Default is propagation of NaNs.
- Yields:
online_min (ndarray) – Cumulative minimum.