argmax

compas.geometry.argmax(values)[source]

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

Parameters:
valuessequence[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

Examples

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