X = [......];v = 55;[i,j,v] = find(X>v)
returns a column vector v of the nonzero entries in X, as well as row and column indices.
i 所在行
j 所在列
v 符合条件的数
用find函数就行。