다음: Polynomial Manipulations, 이전: Statistics, 상위 문서: Top [차례][찾아보기]
Octave has a number of functions for managing sets of data. A set is defined
as a collection of unique elements and is typically represented by a vector of
numbers sorted in ascending order. Any vector or matrix can be converted to a
set by removing duplicates through the use of the unique
function.
However, it isn’t necessary to explicitly create a set as all of the functions
which operate on sets will convert their input to a set before proceeding.
Return the unique elements of 가로 sorted in ascending order.
If the input 가로 is a column vector then return a column vector; Otherwise, return a row vector. 가로 may also be a cell array of strings.
If the optional argument "rows"
is given then return the unique
rows of 가로 sorted in ascending order. The input must be a 2-D matrix
to use this option.
If requested, return index vectors i and j such that
세로 = 가로(i)
and 가로 = 세로(j)
.
Additionally, if i is a requested output then one of
"first"
or "last"
may be given as an input. If
"last"
is specified, return the highest possible indices in
i, otherwise, if "first"
is specified, return the lowest.
The default is "last"
.
• Set Operations: |
다음: Polynomial Manipulations, 이전: Statistics, 상위 문서: Top [차례][찾아보기]