Counting Repeated elements in an array.

조회 수: 5 (최근 30일)
Jamie Bell-Thomas
Jamie Bell-Thomas 2020년 2월 14일
댓글: Jamie Bell-Thomas 2020년 2월 14일
Suppose I have 2 arrays, A and B, comprised of random sets of unique numbers. I want to compare the 2 lists and count the number of elements that appear in both lists.
For example if we have A = [1 2 3 4 5 6] and B = [6 7 8 9 10 11]. It'll output 1.

채택된 답변

David Hill
David Hill 2020년 2월 14일
nnz(ismember(A,B));

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by