N-D matrix accumarray
Show older comments
Hi,
I'm working with (large) N-D matrices and need to sum elements along their dimensions, according to grouping index vectors. To exemplify
A is a 4-D matrix with dimensions (3,4,2,7), and
x1 = (2 1 2 3) <- same length as 2nd dimension in A
x2 = (3 3 2 1 3 2 4) <- same length as 4th dimension in A
I would like to find a formula f to sum the matrix along dimension 2 using the grouping variable x1 and along dimension 4 using the grouping variable x2. In the case of x2, for instance, the first, second and fifth 3x4x2 hyperplanes (group "3") should be summed together, as should the third and sixth (group "2"), while groups "1" and "4" should not change. Whether through a one-liner or a loop through the two dimensions involved, the final result should be a matrix of dimension (3,3,2,4).
I've seen similar cases using accumarray and/or arrayfun, but only applied to special (and straightforward) 2-D or 3-D (<- flattened to 2-D in the solutions proposed) matrices.
Is there a generalized (matrix of any dimension) and efficient way, through those or other functions, to obtain the result above?
Greateful in advance for any solution or lead you could provide.
Kind regards
Dan
Accepted Answer
More Answers (1)
Andrei Bobrov
on 30 Mar 2017
A = randi(10,3,4,2,7);
x1 = [2 1 2 3];
x2 = [3 3 2 1 3 2 4];
s = size(A);
[a,b,c,d] = ndgrid(1:s(1),x1,1:s(3),x2);
out = accumarray([a(:),b(:),c(:),d(:)], A(:));
1 Comment
Daniele Rocchetta
on 30 Mar 2017
Categories
Find more on Numeric Types 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!