countmember

バージョン 2.1 (1.87 KB) 作成者: Jos (10584)
Count members.
ダウンロード: 6.2K
更新 2019/1/20

ライセンスの表示

編集メモ: 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

引用

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

MATLAB リリースの互換性
作成: R2018b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
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.