Two vectors to matrix sorted on occurrence

1 次查看(过去 30 天)
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 个评论
KSSV
KSSV 2020-6-3
Show us a snapshopt of how the nx2 array looks like.
Mark Laterius
Mark Laterius 2020-6-4
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

请先登录,再进行评论。

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by