MATLAB: Sum of two cell arrays with different dimensions

sum of two cell arrays with different sizes

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 ?!

Best Answer

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)