count even elements vector

I have wrote this to identify the even numbers x = vec(mod(vec,2)==0); how do I edit it so it returns how many integers of even numbers there are within this single command.

 Akzeptierte Antwort

Guillaume
Guillaume am 14 Okt. 2018

0 Stimmen

Isn't it trivial? Using sum:
sum(mod(myvec, 2) == 0)
Or using nnz:
nnz(mod(myvec, 2) == 0)

Weitere Antworten (2)

Kevin Chng
Kevin Chng am 14 Okt. 2018

0 Stimmen

you may use length(), or numel()
Image Analyst
Image Analyst am 14 Okt. 2018

0 Stimmen

Yet another option, this time using rem() for remainder:
myvec = randi(10, 1, 20) % Sample data.
numEvenNumbers = sum(rem(myvec, 2) == 0)

Produkte

Version

R2018b

Gefragt:

am 14 Okt. 2018

Erneut geöffnet:

am 14 Okt. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by