.. highlightlang:: us .. _st_set: ST_set ====== .. index:: ST_set .. us.tag ST_set NOTREADYENGLISH New300 STR The :ref:`ST_set` function takes an vector argument (*A*), and returns a vector that is sorted in ascending order, and has no duplicate values. .. function:: C = ST_set(A) .. us.return **Return Value** *C* is a real or string vector. The vector is sorted in ascending order, and has no duplicate values. .. us.params **Parameters** .. uparam:: A *A* is a real or string vector. .. us.example **Example** :: * ST_set([1,4,2,4,6,3]) * 1.000 2.000 3.000 4.000 6.000 * * ST_set(["one", "four", "two", "four", "three"])' four one three two .. seealso:: :ref:`overview-strings`, :ref:`ST_complement`, :ref:`ST_intersection`, :ref:`ST_union`, :ref:`ST_seti` :sub:`id-415572`