Hello,
I have a cell
A = cell(10,1);
A{1} = a matrix10x10
A{2} = a matrix10x10
A{10} = a matrix10x10
Hoping it's a good way to use the cell
now I need to sum up all matrix inside A. is there a compactway to do it? (I need A{1} + A{2} .......)
thanks,