How many positive entries in array

I have a 1450x1 array. I want to count how many positive entries in array?

 Accepted Answer

x = randn(1450,1);
indices = find(x>0);
length(indices)
or
count = length(nonzeros(x(x>0)));

More Answers (1)

hidayet beyhan
hidayet beyhan on 28 Mar 2020
Edited: hidayet beyhan on 28 Mar 2020
Or you can use for an array:
x = randn(1450,1);
sum(x>0)

Categories

Asked:

on 1 Apr 2012

Edited:

on 28 Mar 2020

Community Treasure Hunt

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

Start Hunting!