用matlab编一个程序找出一个有几十万数据的数组中大于某个数的所有值

2024-11-16 19:49:52
推荐回答(2个)
回答1:

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 符合条件的数

回答2:

用find函数就行。