LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
l1norm_cell.m
1function value = l1norm_cell(vectors)
2value = 0.0;
3for k = 1:numel(vectors)
4 value = value + norm(vectors{k}, 1);
5end
6end