How to count the number of true elements in a NumPy bool array

I have a NumPy array ‘boolarr’ of boolean type. I want to count the number of elements whose values are True. Is there a NumPy or Python routine dedicated for this task? Or, do I need to iterate over the elements in my script?

6 Answers
6

Leave a Comment