Returns the minimum of one or more input arguments
VMIN(val1, val2, ..., valN)
valN |
- |
One or more series or scalars. |
A real or series.
vmin(10, 15, 20)
returns 10.
vmin({1, 2, 3}, {0, 4, 2}, {0, 3, 8})
returns the series {0, 2, 2}.
W1:{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}
W2: vmin(w1)
returns {1, 2, 3} the minimums of each column of W1.
VMIN with no input arguments uses the current Window.
VMIN is an SPL routine that accepts a variable number of input arguments.