I have matrix
A=[2 3 4 5 6 7; 7 6 5 4 3 2]
I want to count how many number of elements have a value greater than 3 and less than 6.
length(A(A>3 & A<6))