matlab 基础 unique函数与ismember函数

(1)unique函数
函数格式:
【matlab 基础 unique函数与ismember函数】b = unique (a)%取集合a的不重复元素构成的向量;
b = unique (A,'rows')%返回A、B不同行元素组成的矩阵;
[b,i,j] = unique (…)%其中 i 体现b中元素在原向量(矩阵a)中的位置;j体现原向量(矩阵a)在b中的位置;
代码:

>> A=[1 2 3; 4 5 6; 7 8 9; 1 2 3; 5 5 5; 6 6 6; 6 7 8]A =123 456 789 123 555 666 678>> A1=unique(A,'rows')A1 =123 456 555 666 678 789>>



(2)ismember tf=isme

    推荐阅读