フィルターのクリア

sum of two cell arrays with different dimensions

3 ビュー (過去 30 日間)
Mori
Mori 2016 年 7 月 13 日
回答済み: Andrei Bobrov 2016 年 7 月 13 日
I have 2 cells, A, includes 1*6 cell and each cell has 290 doubles. B, includes 1*11 cell and each cell has 1*6 cell and each cell has 290 doubles.
how I sum A+B by repeating A for each 11 cells ?!

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 7 月 13 日
A={rand(4,1) rand(4,1)} % Example
B={{rand(4,1) rand(4,1)},{rand(4,1) rand(4,1)},{rand(4,1) rand(4,1)}}
C=cellfun(@(x) cellfun(@(z1,z2) z1+z2,A,x,'un',0),B,'un',0)

その他の回答 (1 件)

Andrei Bobrov
Andrei Bobrov 2016 年 7 月 13 日
m = numel(A);
n = numel(B);
C = cell(size(B));
for jj = 1:n
for ii = 1:m
C{jj}{ii} = A{ii} + B{jj}{ii};
end
end

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by