finding position in matrix

I couldnt find the way to figure out how find position M(m,n) matrix can you help me ?

2 Comments

If you want to find a list of positions, you can use:
find(condition)
Where condition might look like M == 1
Alternatively, you could simply use
M == 1
Which would return a logical array of size n x m, meaning that calling M(M==1) would give you a list of the values at the indices above.
sarp, can you further elaborate your question with an example of what you mean by "find position M(m,n)"?

Sign in to comment.

Answers (1)

Categories

Find more on Operators and Elementary Operations in Help Center and File Exchange

Asked:

on 20 Apr 2020

Answered:

on 23 Apr 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!