How many positive entries in array

조회 수: 62 (최근 30일)
Mate 2u
Mate 2u 2012년 4월 1일
편집: hidayet beyhan 2020년 3월 28일
I have a 1450x1 array. I want to count how many positive entries in array?

채택된 답변

Wayne King
Wayne King 2012년 4월 1일
x = randn(1450,1);
indices = find(x>0);
length(indices)
or
count = length(nonzeros(x(x>0)));

추가 답변 (1개)

hidayet beyhan
hidayet beyhan 2020년 3월 28일
편집: hidayet beyhan 2020년 3월 28일
Or you can use for an array:
x = randn(1450,1);
sum(x>0)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by