// ds_list_sum(id) // Sums the entries in a list of reals var L, size, result, i; L = argument0; size = ds_list_size(L); result = 0; for (i = 0; i < size; i += 1) result += ds_list_find_value(L, i); return result;
Categories: Data processing, Mathematics
There are no comments to display.
You must be signed in to post comments.