Acquiring related Matrix Members
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
I have a n by m matrix A and 1 by n array B. Assume
 A = rand(3,5)
 B = [3;5;2]
How can I get 1st rows 3rd element, 2nd rows 5th element and 3rd rows 2. element of A matrix w/o for loop?
Each rows related element is the member of B array as you can see?
0 commentaires
Réponse acceptée
Plus de réponses (1)
  Andrei Bobrov
      
      
 le 7 Août 2012
        
      Modifié(e) : Andrei Bobrov
      
      
 le 7 Août 2012
  
      out = A(sub2ind(size(A),(1:numel(B))',B(:)));
0 commentaires
Voir également
Catégories
				En savoir plus sur Creating and Concatenating Matrices 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!


