How to find the column index of the first nonzero element for every row of a given matrix

4 Ansichten (letzte 30 Tage)
Dear all,
I have the following matrix
A=[1 1 1 1; 0 1 1 1; 0 0 0 1; 0 0 1 1; 0 1 1 1]
A = 5×4
1 1 1 1 0 1 1 1 0 0 0 1 0 0 1 1 0 1 1 1
and I would like to get an output vector v listing the column indices of the first nonzero element for every row of A:
v=[1;2;4;3;2]
v = 5×1
1 2 4 3 2
How can I do this? Thanks in advance, I appreciate your time and help.
  2 Kommentare
Distelfink
Distelfink am 6 Mär. 2022
Not at all, but this was a different problem I thought. Matt's solution in that thread, to use the find() function, did not work for me in the case here because it yields the column indices of all non-negative values in each row.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Arif Hoq
Arif Hoq am 6 Mär. 2022
you can find your answer here
Just follow this:
A=[1 1 1 1; 0 1 1 1; 0 0 0 1; 0 0 1 1; 0 1 1 1];
[~,output]=max(A,[],2)
output = 5×1
1 2 4 3 2

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by