Answers for "numpy count occurrences in interval array"

0

numpy count occurrences in interval array

# credit to Stack Overflow user in source link
# a is a numpy array
# Note: the following syntax allows you to count the number of elements x
# of the array such that 25 < x < 100 
((a > 25) & (a < 100)).sum()
Posted by: Guest on May-18-2021

Python Answers by Framework

Browse Popular Code Answers by Language