Finding the row/column locations of 1s in a boolean matrix

5 views (last 30 days)
I have a Boolean matrix and I would like to find the row/column locations of all of the ones within the matrix. How might I go about doing this?

Accepted Answer

Matt Fig
Matt Fig on 24 Nov 2012
Edited: Matt Fig on 24 Nov 2012
A = rand(3)>.5;
[I,J] = find(A) % I is the rows, J is the cols.

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!