Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

i want to find the location of a number in a matrix in matlab

I have a matrix lets say

x =
 2     2     3
 4     3     2
 6     4     8

now I want to get the location of a number 4.
I want ans like this :

ans=(2,1) (3,2)

as these are the locations for 4 in matrix.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use find:

[i,j] = find(x == 4)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...