| 365 | } |
| 366 | |
| 367 | double UArray_arithmeticMeanAsDouble(const UArray *self) { |
| 368 | return UArray_sumAsDouble(self) / ((double)self->size); |
| 369 | } |
| 370 | |
| 371 | double UArray_arithmeticMeanSquareAsDouble(const UArray *self) { |
| 372 | double r; |
no test coverage detected