Filter löschen
Filter löschen

Check if matrix has two identical rows

33 Ansichten (letzte 30 Tage)
Raldi
Raldi am 4 Jan. 2012
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?

Akzeptierte Antwort

Dr. Seis
Dr. Seis am 4 Jan. 2012
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.

Weitere Antworten (1)

Sean de Wolski
Sean de Wolski am 4 Jan. 2012
doc unique
specifically look at the 'rows' option.

Kategorien

Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by