필터 지우기
필터 지우기

Number of counts in matrix

조회 수: 5 (최근 30일)
Prince
Prince 2024년 4월 3일
댓글: Voss 2024년 4월 3일
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일
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일
It worked. Thank you so much
Voss
Voss 2024년 4월 3일
Great! You're welcome!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Steven Lord
Steven Lord 2024년 4월 3일
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