Two vectors to matrix sorted on occurrence

1 view (last 30 days)
I have a (n x 2) array, with labels in the first column and the hour they occur at in the second column. Labels are for ease of use given as 1, 2, 3, 4, ... and time is given as 1, 2, ..., 24.
So basically every label has a timestamp at the moment, most occur at many different times. Now I would like to create a matrix with labels as rows and number of times they occur at each hour in the colums. I cannot remember what this is called...
E.g. say that I have 6 hours and 5 labels, I want it to look something like this:
x = [2 0 0 1 0 2;
1 0 0 0 2 0;
0 0 0 0 0 0;
2 0 0 0 0 0;
1 2 4 5 6 0]
So label one occurred twice during the hour 1.
  2 Comments
KSSV
KSSV on 3 Jun 2020
Show us a snapshopt of how the nx2 array looks like.
Mark Laterius
Mark Laterius on 4 Jun 2020
So an example of the array would be
y = [1, 0;
2, 0;
4, 1;
3, 2;
2, 2;
4, 3]
So first column is number of label and second row is in which hour that label occurred. Hope this answers your question

Sign in to comment.

Accepted Answer

David Hill
David Hill on 3 Jun 2020
labels=5;
hours=6;
x=histcounts2(a(:,1),a(:,2),[labels,hours]);

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!