Numbering the rows of a matrix giving the same number to equal rows?

1 Ansicht (letzte 30 Tage)
Hi all, I have a matrix A mxn with some equivalent rows; the equivalent rows can only be adjacent. I want to create without looping a vector C mx1 in which I number from 1 to b<m the rows of A giving the same number to the same rows. E.g.
A=[1 2 3 4; 5 6 7 8; 5 6 7 8; 5 6 7 8; 0 0 0 0; 8 9 0 1; 8 9 0 1]
C=[1 2 2 2 3 4 4];
Could you help me?

Akzeptierte Antwort

the cyclist
the cyclist am 7 Mai 2014
[~,~,C] = unique(A,'rows','stable')

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by