How many positive entries in array
조회 수: 62 (최근 30일)
이전 댓글 표시
I have a 1450x1 array. I want to count how many positive entries in array?
댓글 수: 0
채택된 답변
Wayne King
2012년 4월 1일
x = randn(1450,1);
indices = find(x>0);
length(indices)
or
count = length(nonzeros(x(x>0)));
댓글 수: 0
추가 답변 (1개)
hidayet beyhan
2020년 3월 28일
편집: hidayet beyhan
2020년 3월 28일
Or you can use for an array:
x = randn(1450,1);
sum(x>0)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!