Selecting an element from each column of a matrix using another matrix
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Charles Brown-King
le 4 Fév 2016
Réponse apportée : Azzi Abdelmalek
le 4 Fév 2016
I have a 130x87 matrix (A) and I need to select an element from each column based on the numbers in a 1x87 matrix (B). So if the first number in matrix B is 12, I need the 12th number in the first column of matrix A.
0 commentaires
Réponse acceptée
Plus de réponses (1)
Azzi Abdelmalek
le 4 Fév 2016
%Example
A= randi(10,5,6)
B =randi(5,1,6)
%---------------------
[n,m]=size(A);
idx=B+(0:n:n*(m-1))
out=A(idx)
0 commentaires
Voir également
Catégories
En savoir plus sur Resizing and Reshaping 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!