How to find the number of ones in each column of a logical matrix?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rightia Rollmann
el 11 de Feb. de 2017
Comentada: Star Strider
el 11 de Feb. de 2017
How to find the number of ones in each column of a logical matrix?
0 comentarios
Respuesta aceptada
Star Strider
el 11 de Feb. de 2017
Editada: Star Strider
el 11 de Feb. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!