在matlab中知道数字如何查找其在矩阵中的位置?
问题描述:
在matlab中知道数字如何查找其在矩阵中的位置?
答
>> x=magic(4)
x =
16 2 313
51110 8
9 7 612
41415 1
>> [i,j]=find(x==7)
i =
3
j =
2