Return the different values in a column vector, arranged in ascending order. As an example, values([1, 2, 3, 1]) returns the vector [1, 2, 3].
Return the different values in a column vector, arranged in ascending order.
As an example, values([1, 2, 3, 1]) returns the vector [1, 2, 3].
values([1, 2, 3, 1])
[1, 2, 3]