Filter löschen
Filter löschen

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

4 Ansichten (letzte 30 Tage)
Athira Surendran
Athira Surendran am 17 Jan. 2017
Beantwortet: Adam am 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.

Antworten (1)

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

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by