Azzera filtri
Azzera filtri

reshape and sum multi-dimensional matrix

5 visualizzazioni (ultimi 30 giorni)
ehsan
ehsan il 18 Mag 2018
Modificato: Jan il 28 Giu 2018
Hi, I have a 20-by-30-by-40 matrix. I would like to sum each two page of the third dimension. In the end, I need to have a 20-by-30-by-20 matrix.
I appreciate if you could help me.

Risposta accettata

Stephen23
Stephen23 il 18 Mag 2018
Modificato: Stephen23 il 18 Mag 2018
Where A is your array:
A(:,:,1:2:end) + A(:,:,2:2:end)

Più risposte (2)

Sammit Jain
Sammit Jain il 18 Mag 2018
Hi, I think what you're trying to do can be accomplished without reshaping the multi-dimensional matrix.
% Initializing 20x30x40 matrix of random elements
X = rand(20,30,40);
% Splitting the matrix into 2 sets based on the alternating third dimension
% The two sets are of dimensions 20x30x20 each.
% Taking out odd elements of third dimension
setA = X(:,:,1:2:40);
% Taking out even elements of third dimension
setB = X(:,:,2:2:40)
% Adding the two sets A and B
result = setA+setB;
The key here is splitting the main matrix into two 'pages' that you actually want to add.
  1 Commento
ehsan
ehsan il 18 Mag 2018
Modificato: ehsan il 28 Giu 2018
Thanks for your explanation Sammit. Actually, both answers are correct.

Accedi per commentare.


Jan
Jan il 28 Giu 2018
Modificato: Jan il 28 Giu 2018
Or:
squeeze(sum(reshape(A, 20, 30, 2, 20), 3))

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by