| 369 | } |
| 370 | |
| 371 | double UArray_arithmeticMeanSquareAsDouble(const UArray *self) { |
| 372 | double r; |
| 373 | UArray *s = UArray_clone(self); |
| 374 | UArray_square(s); |
| 375 | r = UArray_arithmeticMeanAsDouble(s); |
| 376 | UArray_free(s); |
| 377 | return r; |
| 378 | } |
| 379 | |
| 380 | double UArray_maxAsDouble(const UArray *self) { |
| 381 | if (self->size > 0) { |
nothing calls this directly
no test coverage detected