Finding column index of the first instance of 1
2 次查看(过去 30 天)
显示 更早的评论
I have a logical array like this:

I want to extrat the colum index of the cells where the first instance of 1 is detected. Like this:

For example, you see here that the first two rows show 4, because that is where 1 is first detected.
0 个评论
采纳的回答
Walter Roberson
2022-5-2
C = sum(cumprod(~X, 2),1) + 1;
C will be one more than the number of columns for any row that has no 1.
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!