Previous Up Next

6.3.23  Counting elements greater than a given value

The count_sup command counts the number of elements of a list strictly greater than a given value.

Example

count_sup(12,[2,12,45,3,7,78])
     
2           

Previous Up Next