Count number 1 in the row
조회 수: 1 (최근 30일)
이전 댓글 표시
Dear all, I have this range:
x=[0 0 0 1 0 1 0 0]
I want to count number 1 in this row. Could you help me? Thanks.
댓글 수: 0
채택된 답변
추가 답변 (3개)
Gennaro Arguzzi
2017년 5월 11일
편집: Gennaro Arguzzi
2017년 5월 11일
z=[0 0 0 1 0 1 0 0];
a=length(z);
b=0;
for i=1:a
if(z(i)==1)
b=b+1;
end
end
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!