필터 지우기
필터 지우기

How can I count the followed occurrences of each element in a vector in MATLAB?

조회 수: 1 (최근 30일)
Hi, I want to count the number of followed occurrences of each element in a vector.
So if my input is
x = [1 1 1 2 2 1 1 2 5 5]
I need an output
y = [1 2 1 2 5;3 2 2 1 2] How do I do this?

채택된 답변

Stephen23
Stephen23 2015년 11월 30일
편집: Stephen23 2015년 11월 30일
Judicious use of diff solves this easily:
x = [1 1 1 2 2 1 1 2 5 5];
f = [find(diff(x)),numel(x)];
y(2,:) = [f(1),diff(f)];
y(1,:) = x(f);
which generates this output:
>> y =
1 2 1 2 5
3 2 2 1 2
  댓글 수: 4
Stephen23
Stephen23 2015년 11월 30일
편집: Stephen23 2015년 11월 30일
If you have a newer MATLAB version, you can use repelem, which provides exactly this functionality:
repelem(A(1,:),A(2,:))
Otherwise use arrayfun and repmat:
>> A = [1,2,1,2,5; 3,2,2,1,2];
>> C = arrayfun(@(v,n)repmat(v,1,n),A(1,:),A(2,:),'UniformOutput',false);
>> B = horzcat(C{:})
B =
1 1 1 2 2 1 1 2 5 5

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Jan
Jan 2015년 11월 30일
If run time matters, you can try FEX: RunLength
x = [1 1 1 2 2 1 1 2 5 5];
[b, n] = RunLength(x);
Result = [b; n];

카테고리

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