MCPcopy Create free account
hub / github.com/IoLanguage/io / UArray_arithmeticMeanSquareAsDouble

Function UArray_arithmeticMeanSquareAsDouble

libs/basekit/source/UArray_math.c:371–378  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

369}
370
371double 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
380double UArray_maxAsDouble(const UArray *self) {
381 if (self->size > 0) {

Callers

nothing calls this directly

Calls 4

UArray_cloneFunction · 0.85
UArray_squareFunction · 0.85
UArray_freeFunction · 0.85

Tested by

no test coverage detected