Number of counts in matrix

47 次查看(过去 30 天)
Prince
Prince 2024-4-3,21:00
评论: Voss 2024-4-3,22:07
How to count the number of individual elements in a matrix using matlab? I mean the number of times individual elements appear.

采纳的回答

Voss
Voss 2024-4-3,21:13
You can use nnz.
Example:
A = [1 1 2; 2 1 2; 3 1 1]
A = 3x3
1 1 2 2 1 2 3 1 1
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
nnz(A == 1) % number of times 1 appears in A
ans = 5
nnz(A == 2) % number of times 2 appears in A
ans = 3
nnz(A == 3) % number of times 3 appears in A
ans = 1
  4 个评论
Prince
Prince 2024-4-3,22:04
It worked. Thank you so much
Voss
Voss 2024-4-3,22:07
Great! You're welcome!

请先登录,再进行评论。

更多回答(1 个)

Steven Lord
Steven Lord 2024-4-3,21:32
Use histcounts with unique (or uniquetol) to generate the bins. You will need to add one more bin at the end since the last bin includes both its edges (unlike the other bins, which only include their left edges.) I would use inf as the right-most end of that last bin.

类别

Help CenterFile Exchange 中查找有关 Operating on Diagonal Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by