small
K-th smallest value in an array.
Syntax
Section titled “Syntax”v = small(array, k)Description
Section titled “Description”Returns the k-th smallest value in array. small(array, 1) is min(array).
Example
Section titled “Example”small([3 5 7 9 11], 2) % 5