gistlib
main.m% Create a table with 100 elements table = rand(100, 1); % Add the first 20 elements result = sum(table(1:20)); disp(result); 127 chars7 lines
% Create a table with 100 elements table = rand(100, 1); % Add the first 20 elements result = sum(table(1:20)); disp(result);
gistlibby LogSnag