How to find the position of a row in an array
    12 views (last 30 days)
  
       Show older comments
    
If I have an array like this
R=[1 0 1 1 1;
   1 1 0 1 0; 
   1 0 1 1 0; 
   0 1 0 1 1; 
   0 0 1 0 1];
I want to find the position of S in R. 
S=[1 0 1 1 0];
Is there a function which takes S as an input and returns me its position in R which is the 3rd row
0 Comments
Answers (2)
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!

