MATLAB: How to sum multiple matrics inside a cell array

cellcell arraysMATLABmatricesmatrixsum

for example:
A = cell(1,3);
A{1} = [1];
A{2} = [1];
A{3} = [1];
What's a quick command to sum these cell elements to return [3]? plus() only works for size of two.

Best Answer

result = sum([A{:}]);