argmax

compas.geometry.argmax(values)[source]

Returns the index of the first maximum value within an array.

Parameters

values (sequence[float]) – A list of values.

Returns

int – The index of the first maximum value within an array.

Notes

NumPy’s argmax function 1 is different, it returns an array of indices.

References

1

https://numpy.org/doc/stable/reference/generated/numpy.argmax.html

Examples

>>> argmax([2, 4, 4, 3])
1