How to find the number of ones in each column of a logical matrix?
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Rightia Rollmann
le 11 Fév 2017
Commenté : Star Strider
le 11 Fév 2017
How to find the number of ones in each column of a logical matrix?
0 commentaires
Réponse acceptée
Star Strider
le 11 Fév 2017
Modifié(e) : Star Strider
le 11 Fév 2017
Use the sum function.
Example:
A = logical(randi([0 1], 10,5)); % Create Data
Ones_In_Each_Column = sum(A) % Sum The Columns
EDIT — Added ‘Example’ code.
4 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!