Akzeptierte Antwort

Wayne King
Wayne King am 1 Apr. 2012

3 Stimmen

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

Weitere Antworten (1)

hidayet beyhan
hidayet beyhan am 28 Mär. 2020
Bearbeitet: hidayet beyhan am 28 Mär. 2020

1 Stimme

Or you can use for an array:
x = randn(1450,1);
sum(x>0)

Kategorien

Community Treasure Hunt

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

Start Hunting!

Translated by