>> help setdiff
SETDIFF Set difference.
SETDIFF(A,B) when A and B are vectors returns the values
in A that are not in B. The result will be sorted. A and B
can be cell arrays of strings.
SETDIFF(A,B,'rows') when A are B are matrices with the same
number of columns returns the rows from A that are not in B.
[C,I] = SETDIFF(...) also returns an index vector I such that
C = A(I) (or C = A(I,:)).
See also UNIQUE, UNION, INTERSECT, SETXOR, ISMEMBER.
Overloaded methods:
opaque/setdiff
cell/setdiff
ordinal/setdiff
categorical/setdiff
nominal/setdiff
doc setdiff
setdiff(A,B) >> help
setdiff(A,B)
A=[1 2 3 4 5]B=[2
ocatve 에선 돌아갑니다. http://weboctave.mimuw.edu.pl/weboctave
B[] 에 있는 것들이 제거하고 싶은 index 들인지 아니면 value 들인지 질문이 애매한데요.
그러게요. B에 있는 것이 index라면
그러게요. B에 있는 것이 index라면 bushi님의 답글을,
B에 있는 것이 value라면 setdiff를 쓰시면 되겠네요..
인덱스를 언급하신걸보니, 전자인것 같네요..
댓글 달기