Effacer les filtres
Effacer les filtres

product of sum of the elements along the fourth dimension in a 4D matrix

4 vues (au cours des 30 derniers jours)
Athira Surendran
Athira Surendran le 17 Jan 2017
Réponse apportée : Adam le 17 Jan 2017
Hi, I've a 4D matrix. I want to take the product of sum of the elements along the fourth dimension. Basically i want to do this "ΠΣ" operation.
For example, a(i,j,k,l) is a 4D matrix. I want the sum along fourth dimension for all i,j,k values and store it to a 3D matrix b(i,j,k). Then I want to find the product of all elements along the third dimension in b for all i,j values and store it to a 2D matrix c(i,j).
How to do this? Thanks in advance.

Réponses (1)

Adam
Adam le 17 Jan 2017
a = ones( 3, 4, 5, 6 );
b = sum( a, 4 );
c = prod( b, 3 );
seems to do the job

Catégories

En savoir plus sur Matrix Indexing 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!

Translated by