필터 지우기
필터 지우기

counting the number of 1's and 0's in each row

조회 수: 3 (최근 30일)
Panda Girl
Panda Girl 2018년 11월 16일
댓글: Panda Girl 2018년 11월 16일
  • >> tag123_data = [0;1;1]
  • tag123_data =
  • 0
  • 1
  • 1
  • >> scm = randi(0:1,3,16)
  • scm =
  • 1 1 0 0 1 1 1 0 1 0 1 1 1 1 0 1
  • 1 1 0 1 0 1 0 1 0 0 0 1 0 0 0 1
  • 0 0 1 0 1 1 0 0 1 0 0 1 1 1 1 0
  • >> out_data = xor(tag123_data,scm)
  • out_data =
  • 3×16 logical array
  • 1 1 0 0 1 1 1 0 1 0 1 1 1 1 0 1
  • 0 0 1 0 1 0 1 0 1 1 1 0 1 1 1 0
  • 1 1 0 1 0 0 1 1 0 1 1 0 0 0 0 1
How do i count the number of 1's and 0's in in each row?? Like in row 1 there are 11 1's and 5 0's and in row 2 there are 9 1's and 7 0's how to write a syntax showing the count of 1's and 0's in every row

채택된 답변

Miriam
Miriam 2018년 11월 16일
tag123_data = [0;1;1];
scm = randi(0:1,3,16);
out_data = xor(tag123_data,scm);
n_ones = sum(out_data,2);
n_zeros = size(out_data,2) - n_ones;
  댓글 수: 1
Panda Girl
Panda Girl 2018년 11월 16일
Thank you so much for your reply. This works, really appreciate your help.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by