Finding column index of the first instance of 1
    4 views (last 30 days)
  
       Show older comments
    
    Pelajar UM
 on 2 May 2022
  
    
    
    
    
    Commented: Walter Roberson
      
      
 on 3 May 2022
            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 Comments
Accepted Answer
  Walter Roberson
      
      
 on 2 May 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 Comments
More Answers (1)
See Also
Categories
				Find more on Loops and Conditional Statements 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!


