sum of doubles into cell arrays
1 回表示 (過去 30 日間)
古いコメントを表示
I have a cell, called A with 1*7 cell, then each cell has 1*3 other cells and each of them has 10* 1300 doubles.
I want cell B with 1*7 cell, each cell has 1*3 cell and each of them has sum of columns (1*1300).
- Thanks
0 件のコメント
採用された回答
the cyclist
2016 年 7 月 13 日
編集済み: the cyclist
2016 年 7 月 13 日
B = cellfun(@(x)cellfun(@(y)sum(y),x,'UniformOutput',false),A,'UniformOutput',false)
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!