mcount (mex)

Counts the number elements in a specified vector or matrix that match a specified criteria.
1.5K Downloads
Updated 21 Jun 2016

View License

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.

Cite As

Stefano Gianoli (2024). mcount (mex) (https://www.mathworks.com/matlabcentral/fileexchange/5194-mcount-mex), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2016a
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Analyze Simulation Results in Help Center and MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
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