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

1 view (last 30 days)
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?

Accepted Answer

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

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!