MCPcopy Create free account
hub / github.com/OpenPTrack/open_ptrack_v2 / mse_array

Function mse_array

yolo_detector/darknet_opt/src/utils.c:543–549  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

541}
542
543float mse_array(float *a, int n)
544{
545 int i;
546 float sum = 0;
547 for(i = 0; i < n; ++i) sum += a[i]*a[i];
548 return sqrt(sum/n);
549}
550
551void normalize_array(float *a, int n)
552{

Callers 2

print_statisticsFunction · 0.85
generate_vid_rnnFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected