mean of logical array(s)
4 views (last 30 days)
Show older comments
How to estimate the logical mean of multidimensional logical array???
3 Comments
Walter Roberson
on 15 May 2017
Good question. It might be the majority. If so then
majority = nnz(A)*2 > numel(A);
The majority is not well defined if exactly half are one way and half are the other way.
Answers (1)
See Also
Categories
Find more on Special Functions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!