Finds the location of the minimum value of a series.
(x, y, z) = MINLOC(series)
series |
- |
Optional. A series. Defaults to the current Window. |
One or more scalars.
W2: gsin(100,.01)
minloc(W2)
returns 0.75, the x location of the minimum.
(mx, my) = minloc(w2)
mx == 0.75
my == min(W2) == 0.0
my returns the x location of the minimum while my returns the y location of the minimum.
MINLOC returns the location of the minimum in terms of x and y units.
See MINIDX to obtain the index of the minimum.
Use (row, col) = minidx(series) to return the row and column indices of the minimum.