Octave--compare two matrix
    12 views (last 30 days)
  
       Show older comments
    
    Michelle Leung
 on 15 Feb 2020
  
    
    
    
    
    Commented: Rik
      
      
 on 16 Feb 2020
            How can I insert the row of matrix A into matrix M if the whole row of matrix A and matrix B are the same?
There is the example
>> A = [1 2; 3 4]
A =
   1   2
   3   4
>> B = [1 2; 3 6]
B =
   1   2
   3   6
M =
   1   2
0 Comments
Accepted Answer
  JESUS DAVID ARIZA ROYETH
      
 on 15 Feb 2020
        M=A(ismember(A,B,"rows"),:)
7 Comments
  Rik
      
      
 on 16 Feb 2020
				Note that Matlab and Octave are sufficiently similar that basic tutorials will work for both. There are several places you can find the most important syntax differences. One of them you encountered here: single and double quotes are interchangeable in Octave, in Matlab they are not.
More Answers (0)
See Also
Categories
				Find more on Octave 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!



