Question about finding the number of times an element appears in an array

조회 수: 1 (최근 30일)
Lewis
Lewis 2021년 11월 4일
댓글: Lewis 2021년 11월 4일
Can someone explain why/how this code works in creating an array B which corresponds to the number of each integer from 1-9 in array A?
c=[1:9]
B=sum(A(:)==c, 1)
  댓글 수: 2
Lewis
Lewis 2021년 11월 4일
E.g. for A=[1 2 4] it will create B = [1 1 0 1]
Rik
Rik 2021년 11월 4일
Combining unique with histc (or histcounts) might be either safer, or more performant for larger arrays than this setup.

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

채택된 답변

Chris
Chris 2021년 11월 4일
편집: Chris 2021년 11월 4일
A = randi(9,2)
A = 2×2
8 8 5 9
A(:) formats A in a column vector.
A(:)
ans = 4×1
8 5 8 9
A(:)==c compares the column to each element of c (possible because the dimensions of a and c are orthogonal), returning an nx9 matrix with ones where the comparison is true.
A(:)==1:9
ans = 4×9 logical array
0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1
Summing across dimension 1 (the default):
B=sum(A(:)==1:9)
B = 1×9
0 0 0 0 1 0 0 2 1

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by