MATLAB: How to count specific numbers in a matrix

I have a matrix like:
100 98 09 88 200
202 23 88 00 76
23 1 23 34 198
I want to count the number of matrix elements which are larger than 100. How to writing the code? Thanks!!

Best Answer

sum(X(:)>100);