Previous Up Next

5.49.30  Count the elements smaller than a given value: count_inf

count_inf takes as arguments: a real and a real list or a real matrix.
count_inf returns the number of elements of the list or matrix which are strictly less than the first argument.
Input:

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

Output:

3

Previous Up Next