Finding column index of the first instance of 1
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Pelajar UM
am 2 Mai 2022
Kommentiert: Walter Roberson
am 3 Mai 2022
I have a logical array like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/985090/image.png)
I want to extrat the colum index of the cells where the first instance of 1 is detected. Like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/985095/image.png)
For example, you see here that the first two rows show 4, because that is where 1 is first detected.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 2 Mai 2022
C = sum(cumprod(~X, 2),1) + 1;
C will be one more than the number of columns for any row that has no 1.
4 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Data Type Identification 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!