Clear Filters
Clear Filters

Count number 1 in the row

3 views (last 30 days)
Quynh tran
Quynh tran on 11 May 2017
Commented: madhan ravi on 20 Feb 2020
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.

Accepted Answer

Quynh tran
Quynh tran on 11 May 2017
Thanks everybody, I had my solution
count=sum(x)

More Answers (3)

Gennaro Arguzzi
Gennaro Arguzzi on 11 May 2017
Edited: Gennaro Arguzzi on 11 May 2017
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

KSSV
KSSV on 11 May 2017
x=[0 0 0 1 0 1 0 0] ;
nnz(x)
find(x==1)
x(x==1)

Aamer Ejaz
Aamer Ejaz on 20 Feb 2020
length(find(X)==1)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!