Computes the running sum of the elements of a SparseData */
| 990 | |
| 991 | /* Computes the running sum of the elements of a SparseData */ |
| 992 | double sum_sdata_values_double(SparseData sdata) { |
| 993 | return accum_sdata_values_double(sdata, id); |
| 994 | } |
| 995 | |
| 996 | /* Computes the l2 norm of a SparseData */ |
| 997 | double l2norm_sdata_values_double(SparseData sdata) { |
no test coverage detected