Sum groups of columns
1 回表示 (過去 30 日間)
古いコメントを表示
Millie Johnston
2022 年 9 月 24 日
コメント済み: Millie Johnston
2022 年 9 月 24 日
Hello,
I have a 10x4600 matrix and I would like to sum all the content in 50 column groups, i.e., sum all of the contents in cols 1-50 then 51-100 etc., greating a 1x92 matrix.
What is the best way to do this?
Any advice is much appreciated
0 件のコメント
採用された回答
Turlough Hughes
2022 年 9 月 24 日
Here's another option:
a = rand(10,4600);
b = mat2cell(a,height(a),repmat(50,1,width(a)/50));
result = cellfun(@(x) sum(x,'all'),b)
その他の回答 (1 件)
Davide Masiello
2022 年 9 月 24 日
編集済み: Davide Masiello
2022 年 9 月 24 日
Example
M = rand(10,4600);
n = 50;
for idx = 1:size(M,2)/n
S(idx) = sum(M(:,n*(idx-1)+1:n*idx),'all');
end
size(S)
S
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Detection についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!