How to find the number of ones in each column of a logical matrix?

조회 수: 3 (최근 30일)
How to find the number of ones in each column of a logical matrix?

채택된 답변

Star Strider
Star Strider 2017년 2월 11일
편집: Star Strider 2017년 2월 11일
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

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Particle & Nuclear Physics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by