フィルターのクリア

element-by-element sum of cell array

16 ビュー (過去 30 日間)
Haneya Qureshi
Haneya Qureshi 2018 年 4 月 23 日
回答済み: KSSV 2018 年 4 月 23 日
I have a cell A of size 100: A{1,1}=[1 2 3 4]; A{1,2}=[5 6 7 8]; ...A{1,100}=[10 11 12 13];
I want to take element-by-element sum. SUMA should be a vector containing 4 elements where 1st element is sum of 1st entry of all A{1,i} elements, where i=1 to 100 and so on. How can i do this?

採用された回答

KSSV
KSSV 2018 年 4 月 23 日
A{1,1}=[1 2 3 4]; A{1,2}=[5 6 7 8]; A{1,3}=[10 11 12 13];
iwant = sum(cell2mat(A')) ;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by