countmember

Versione 2.1 (1,87 KB) da Jos (10584)
Count members.
6,2K download
Aggiornato 20 gen 2019

Visualizza la licenza

Nota dell'editore: This file was selected as MATLAB Central Pick of the Week

C = COUNTMEMBER(A,B) counts the number of times the elements of array A are present in array B, so that C(k) equals the number of occurences of A(k) in B. A may contain non-unique elements. C will have the same size as A.
A and B should be of the same type, and can be cell array of strings.

Examples:
countmember([1 2 1 3],[1 2 2 2 2])
-> 1 4 1 0
countmember({'a','b','c'},{'a','x','a'})
-> 2 0 0

Cita come

Jos (10584) (2024). countmember (https://www.mathworks.com/matlabcentral/fileexchange/7738-countmember), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2018b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Characters and Strings in Help Center e MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
2.1

using histcounts now

2.0.0.0

updated from R13

1.1.0.0

improved help and comments, fixed some spelling issues

1.0.0.0

Reduced overhead by removing unnecessary dummy variables.