Ismember for rows or something else
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Rostislav Teryaev
      
 le 2 Juil 2018
  
    
    
    
    
    Commenté : Rostislav Teryaev
      
 le 2 Juil 2018
            Hello! I have to matrices a and b:
a = [1 2;
     3 4;
     5 6;
     7 8;
     1 2;
     9 10]
b = [1 2;
     5 6]
Every row in these tables describe one entity (start and target node of graph edge). So, I want to find indices of a where the rows are equal to rows in b. In other words I need to get this:
c = [1, 3, 5]
But when I use
[~, c] = ismember(b, a, 'row')
I get only this:
c = [1, 3]
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Matrix Indexing dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

