Filter löschen
Filter löschen

Counting frequency of occurrence in matrix

59 Ansichten (letzte 30 Tage)
Guan Zhao
Guan Zhao am 23 Okt. 2012
Kommentiert: Brian Derstine am 31 Aug. 2021
Good day,
I am attempting to count the number of times each number in a matrix occurred in the matrix.
For example, suppose I have a matrix;
x =
22 23 24 23
24 23 24 22
22 23 23 23
I want an output which will tell me 22 occurred 3 times, 23 occurred 6 times, and 24 occurred 2 times. The actual matrix is larger in size.
Is there a specific function which returns such values or are there any other ways I can resolve this challenge?
  3 Kommentare
Jerry Olup
Jerry Olup am 20 Jun. 2017
Let x be your vector. Something like this can save you an unnecessary toolbox:
xx = unique(x); % temp vector of vals
x = sort(x); % sorted input aligns with temp (lowest to highest)
t = zeros(size(xx)); % vector for freqs
% frequency for each value
for i = 1:length(xx)
t(i) = sum(x == xx(i));
end
Then the t vector shows freqs of the sorted, unique vector x.
m_vdv
m_vdv am 10 Mai 2018
Hi, is it also possible to do this without using 'unique' and 'sort'? For example with only using a for loop and/or if loop? Thanks in advance.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 23 Okt. 2012
x =[
22 23 24 23
24 23 24 22
22 23 23 23];
a = unique(x);
out = [a,histc(x(:),a)];
  8 Kommentare
Lavanya T
Lavanya T am 17 Aug. 2021
Thank you
Brian Derstine
Brian Derstine am 31 Aug. 2021
would be nice if you could just do tabulate(x)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (3)

Aurelien Queffurust
Aurelien Queffurust am 23 Okt. 2012
Using nnz for example:
nnz(x==22)
will return 3
  1 Kommentar
Guan Zhao
Guan Zhao am 23 Okt. 2012
Hi,
My actual matrix will have at least 256 elements. I will have to consider zero elements too.
Regards
Guan Zhao

Melden Sie sich an, um zu kommentieren.


Thomas
Thomas am 23 Okt. 2012
x=[22 23 24 23
24 23 24 22
22 23 23 23];
[a,b]=hist(x,unique(x));
out=[b' sum((a),2)]

abdelrahim hashem
abdelrahim hashem am 15 Nov. 2017
x = [22 23 24 23; 24 23 24 22; 22 23 23 23];
un_x = unique(x);
for i = 1:length(un)
un(i), length(find(x == un_x(i)))
end

Kategorien

Mehr zu Sparse Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by