How I compute multiple sum in matlab for 4D matrix?

2 ビュー (過去 30 日間)
Mehdi
Mehdi 2018 年 9 月 11 日
コメント済み: Mehdi 2018 年 9 月 11 日
How I compute multiple sum in matlab for 4D matrices as below? U and V are 4D matrices.
  12 件のコメント
Mehdi
Mehdi 2018 年 9 月 11 日
編集済み: Mehdi 2018 年 9 月 11 日
As I said I have many similar expressions like that and it seems your method is not applicable for more expressions. I am searching a similar command like add in Maple.
Matt J
Matt J 2018 年 9 月 11 日
編集済み: Matt J 2018 年 9 月 11 日
If they are "similar", my method - which is to use the sum command - is applicable. Have you read the documentation on sum()? It is the best analogue of add that you will find in Matlab.

サインインしてコメントする。

回答 (1 件)

Matt J
Matt J 2018 年 9 月 11 日
編集済み: Matt J 2018 年 9 月 11 日
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 件のコメント
Matt J
Matt J 2018 年 9 月 11 日
編集済み: Matt J 2018 年 9 月 11 日
You should edit your original post with this new equation and information about q_r and q_s. The new expression is rather unclear. You have the symbol q being used for two different things, both as a symbolic variable and as an index of summation.
Mehdi
Mehdi 2018 年 9 月 11 日
I asked the question in new page as below: https://uk.mathworks.com/matlabcentral/answers/418526-what-is-the-best-way-to-calculate-multiple-summations-expression-in-matlab

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by