Check if matrix has two identical rows

33 次查看(过去 30 天)
Hi everyone, I wanted to check if a matrix has two identical rows. But i cant create a code that can do that. I was wondering if anyone has any idea on how to do that?

采纳的回答

Dr. Seis
Dr. Seis 2012-1-4
If you want to remove identical rows, then
B = unique(A,'rows');
As a check, if size(B) ~= size(A), then you have at least two identical rows.

更多回答(1 个)

Sean de Wolski
Sean de Wolski 2012-1-4
doc unique
specifically look at the 'rows' option.

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by