DADiSP Worksheet Functions > Function Categories > Peak Analysis > MAXLOC
Finds the location of the maximum value of a series.
(x, y, z) = MAXLOC(series)
series |
- |
Optional. A series. Defaults to the current Window. |
One or more scalars.
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.
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.