atImin

Syntax

atImin(location, value)

Arguments

location and value are vectors/matrices of the same dimensions.

Details

Find the position of the element with the smallest value in parameter location, and return the value of the element in the same position in parameter value. If there are multiple identical minimums in location, return the position of the first minimum.

If location and value are matrices, conduct the aforementioned calculation with each column of location and the corresponding column of value.

atImin(location, value) = value[imin(location)].

Examples

$ atImin(3 5 1 2, 9 7 5 3)
5

Related functions: imin, atImax