使用 Matlab 获取矩阵中的唯一值

Get unique values in matrix with Matlab

我正在寻找使用 Matlab 获取矩阵中唯一值的最快方法!我有一个这样的矩阵:

1       2
1       2
1       3
1       5
1       23
2       1
3       1
3       2
3       2
3       2
4       17
4       3
4       17

并且需要得到这样的东西:

1       2
1       3
1       5
1       23
2       1
3       1
3       2
4       3
4       17

实际上我需要每行中的列组合的唯一值。

查看带有参数 'rows' 的 matlabs unique() 函数。

C = unique(A,'rows')

https://de.mathworks.com/help/matlab/ref/unique.html