Sum of columns with certain window

1 回表示 (過去 30 日間)
Miroslav Josic
Miroslav Josic 2017 年 1 月 30 日
コメント済み: Miroslav Josic 2017 年 1 月 30 日
Hi guys
I need your help with summing columns based on certain window as I could not find a solution already discussed. I have a matrix of size 2,159x372 where in every 6 columns I have specific industry data for one country (total of 62 countries). So, I would like to sum columns 1-6, 7-12, 13-19 etc in order to get only country data in columns. It means I would have in the end a matrix of size 2,159x62.
I guess I have to use for loop but I am just not clear how to set the window.
Miroslav

採用された回答

Jan
Jan 2017 年 1 月 30 日
編集済み: Jan 2017 年 1 月 30 日
Data = rand(2159, 372);
Data = reshape(Data, 2159, 6, 62);
Result = reshape(sum(Data, 2), 2159, 62);
This splits the 2nd dimension after all 6 elements shifting the rest to the 3rd dimension. After calculating the sum, the inserted dimension is removed again. squeeze(sum(Data, 2)) would be an option also.
  1 件のコメント
Miroslav Josic
Miroslav Josic 2017 年 1 月 30 日
Hi Jan,
Thank you very much! It works perfectly.
I thought a loop should be used, but was wrong.
Appreciate your help a lot!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by