Finding column index of the first instance of 1
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Pelajar UM
el 2 de Mayo de 2022
Comentada: Walter Roberson
el 3 de Mayo de 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 comentarios
Respuesta aceptada
Walter Roberson
el 2 de Mayo de 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 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Data Type Identification en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!