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