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

1 vue (au cours des 30 derniers jours)
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?
  2 commentaires
lamghari
lamghari le 30 Nov 2015
thank's William But this post concerns the consecutive numbers (x + 1) !! I need the occurrence of the same numbers followed

Connectez-vous pour commenter.

Réponse acceptée

Stephen23
Stephen23 le 30 Nov 2015
Modifié(e) : Stephen23 le 30 Nov 2015
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 commentaires
Stephen23
Stephen23 le 30 Nov 2015
Modifié(e) : Stephen23 le 30 Nov 2015
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
lamghari
lamghari le 30 Nov 2015
thanks a lot for your cooperation :)

Connectez-vous pour commenter.

Plus de réponses (1)

Jan
Jan le 30 Nov 2015
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];

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by