How I compute multiple sum in matlab for 4D matrix?
3 views (last 30 days)
Show older comments
How I compute multiple sum in matlab for 4D matrices as below? U and V are 4D matrices.
12 Comments
Answers (1)
Matt J
on 11 Sep 2018
Edited: Matt J
on 11 Sep 2018
Notice that the only indices shared between U and V are j and q. Therefore, you can minimize multiplication operations as follows,
partialU=sum(sum(U,4),1); %sum over i and r
partialV=sum(sum(V,4),1); %sum over k and s
A=sum(partialU(:).*partialV(:)); %sum over j and q
6 Comments
See Also
Categories
Find more on Matrix Indexing 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!