DADiSP Worksheet Functions > Function Categories > Peak Analysis > MAXLOC

 

MAXLOC

Purpose:

Finds the location of the maximum value of a series.

Syntax:

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

series

-

Optional. A series. Defaults to the current Window.

Returns:

One or more scalars.

Example:

W2: gsin(100,.01)

maxloc(W2)

 

returns 0.25, the x location of the maximum.

 

(mx, my) = maxloc(w2)

 

mx == 0.25

my == max(W2) == 1.0

 

mx returns the x location of the maximum while my returns the y location of the maximum.

Remarks:

MAXLOC returns the location of the maximum in terms of x and y units.

 

See MAXIDX to obtain the index of the maximum.

 

Use (row, col) = maxidx(series) to return the row and column indices of the maximum.

See Also:

COLMAX

FIND

FMAX

FMIN

MAX

MAXIDX

MAXVAL

MIN

MINIDX

MINLOC