I'd like to know if there is a function to compute the argmax of a function f
on a list of numbers (integers, longs, floats) numbers
in Stanza.
It would have the following behaviour:
defn argmax (f, numbers: Tuple) :
val N = length(numbers)
if N == 0 :
fatal("Can't compute the argmax of an empty tuple")
var max-index = 0
var max-value = numbers[0]
for idx in 1 to N do :
val value = f(numbers[idx])
if value > max-value :
max-index = idx
max-value = value
max-index
defn f (x) :
x * x
println $ argmax(f, [1, 6, 2, 5])
Result :
1
Thank you!