Octave has a limited set of functions for managing sets of data, where a set is defined as a collection unique elements.
create_set
returns a row vector containing unique values, sorted in ascending
order. For example,
create_set ([ 1, 2; 3, 4; 4, 2 ])
returns the vector
[ 1, 2, 3, 4 ]
union ([ 1, 2, 3 ], [ 2, 3, 5 ])
returns the vector
[ 1, 2, 5 ]
complement ([ 1, 2, 3 ], [ 2, 3, 5 ])
returns the value `5'.
Go to the first, previous, next, last section, table of contents.