mcount (mex)

Counts the number elements in a specified vector or matrix that match a specified criteria.
ダウンロード: 1.5K
更新 2016/6/21

ライセンスの表示

Given a vector or matix MATRIX, counts the number of times that the scalar X satisfy the (string) condition COND. The result is returned in the variable RES. the COND operators allowed are: ==, >=, <=, <, >, !=. The function is faster than SUM(MATRIX'COND'X) or LENGTH(FIND(MATRIX'COND'X)). A test script is provided to show the performances.

引用

Stefano Gianoli (2024). mcount (mex) (https://www.mathworks.com/matlabcentral/fileexchange/5194-mcount-mex), MATLAB Central File Exchange. に取得済み.

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

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
2.1.2.0

small bug fix

2.1.1.0

Name changed to mcount as another function named count exist in MTREE/count.

2.1.0.0

added a test script

2.0.0.0

Can handle NaNs.
To compile it from Matlab Command Window:
>mex count.c
test with:
> count([1 2 2 3 NaN NaN Inf; 1 2 3 4 5 6 7],NaN,'!=')
ans =
12

1.0.0.0