I'm using emacs-calc through org-mode spreadsheet and I would like to count the number of values, in a column, that are greater than a specific value (say 10).
I'm currently using emacs-calc for the computations, but if there is a solution in emacs-lisp, it would be very welcome!
I know that vcount would count the number of values in a vector, but that would count all the values in that vector. How could I add a condition so that only values > 10 are counted?
In other words, I would like a mysterious_function that would return 2 in such a case:
mysterious_function([2,14,11,3,9,1])