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

2024年11月16日 19:49
有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函数就行。