argmin
- compas.geometry.argmin(values)[source]
Returns the index of the first minimum value within an array.
- Parameters
values (sequence[float]) – A list of values.
- Returns
int – The index of the first minimum value within an array.
Notes
NumPy’s argmin function 1 is different, it returns an array of indices.
References
Examples
>>> argmin([4, 2, 2, 3]) 1