DADiSP Worksheet Functions > Function Categories > XY Functions > XMINMAX
Returns the minimum and maximum X value of a series.
(xmin, xmax) = XMINMAX(series)
series |
- |
Optional. A series. Defaults to the current Window. |
A real, the minimum X value.
(xmin, xmax) = XMINMAX(series) returns both the minimum and maximum X values of series.
W1: gnorm(1000, 0.001);setxoffset(10);
(xmin, xmax) = xminmax(W1);
xmin == 10.0
xmax == 10.999
W1: gsin(1000, 1/1000, 2)
W2: gline(1000, 1/1000, 1, 0)
W3: xy(W1, W2)
(xmin1, xmax1) = xminmax(w3);
xmin2 = min(xvals(w3));
xmax2 = max(xvals(w3));
xmin1 == xmin2 == -1.0
xmax1 == xmax2 == 1.0.
XMINMAX returns the minimum and maximum X values of a series without copying or explicitly generating the X values. Consequently, XMINMAX is much faster and more memory efficient for large series than using XVALS directly.