LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
matlab
lib
thirdparty
butools
utils
SumMatrixList.m
1
function S = SumMatrixList(C)
2
3
S=C{1};
4
for
i=2:length(C)
5
S = S + C{i};
6
end
7
8
end
Generated by
1.9.8