MINLOC

Purpose:

Finds the location of the minimum value of a series.

Syntax:

(x, y, z) = MINLOC(series)

series

-

Optional. A series. Defaults to the current Window.

Returns:

One or more scalars.

Example:

W2: gsin(100,.01)

minloc(W2)

 

returns 0.75, the x location of the minimum.

Example:

(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.

Remarks:

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.

See Also:

COLMAX

FIND

FMAX

FMIN

MAXIDX

MAXLOC

MAXVAL

MIN

MINIDX