Counting Repeated elements in an array.

9 visualizaciones (últimos 30 días)
Jamie Bell-Thomas
Jamie Bell-Thomas el 14 de Feb. de 2020
Comentada: Jamie Bell-Thomas el 14 de Feb. de 2020
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.

Respuesta aceptada

David Hill
David Hill el 14 de Feb. de 2020
nnz(ismember(A,B));

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by