Picking values from n-d array along 3rd dimension
Afficher commentaires plus anciens
Hi,
Suppose I have A, an m x n x q array with large integer values.
I have B, an m x n array of integer values in the range of 1:q.
I'd like to pick values from A along the 3rd dimension, so that I obtain C, an m x n array in which for every subscript pair (i,j), m>i>1, n>j>1 the following is true:
x = B(i,j)
C(i,j) = A(i,j,x)
Is there an efficient, loop-free way of doing this?
Many thanks,
Réponse acceptée
Plus de réponses (2)
Roger Stafford
le 11 Juin 2013
C = A((1:m*n)'+m*n*(B(:)-1));
C = reshape(C,m,n);
3 commentaires
Andrei Bobrov
le 11 Juin 2013
Modifié(e) : Andrei Bobrov
le 11 Juin 2013
A(reshape(1:m*n,m,[]) + m*n*(B-1))
Pal
le 11 Juin 2013
Roger Stafford
le 11 Juin 2013
A(reshape(1-m*n:0,m,[])+m*n*B)
David Sanchez
le 11 Juin 2013
You can assign the value of C without referencing (i,j):
x = B(i,j);
C = A(:,:,x);
And you will have for all i, j that C(i,j) = A(i,j,x)
1 commentaire
Pal
le 11 Juin 2013
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!