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

조회 수: 1 (최근 30일)
MRC
MRC 2014년 5월 7일
답변: the cyclist 2014년 5월 7일
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?

채택된 답변

the cyclist
the cyclist 2014년 5월 7일
[~,~,C] = unique(A,'rows','stable')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by