forked from parallella/pal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
p_stddev.c
53 lines (44 loc) · 1021 Bytes
/
p_stddev.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <pal.h>
/**
*
* Calculates the standard deviation of all of the elements vector 'a'.
*
* @param a Pointer to input vector
*
* @param c Pointer to output scalar
*
* @param n Size of 'a' vector.
*
* @return None
*
*/
void p_stddev_f32(const float *a, float *c, int n)
{
float tmp = 0.0f, mean = 0.0f, meansq = 0.0f;
int i;
for (i = 0; i < n; i++) {
tmp += *(a + i);
}
mean = tmp / n;
tmp = 0.0f;
for (i = 0; i < n; i++) {
tmp += (*(a + i) - mean) * (*(a + i) - mean);
}
meansq = tmp / (n - 1);
float x;
union {
float f;
int32_t i;
} j;
float xhalf = 0.5f*meansq;
j.f = meansq;
j.i = 0x5f375a86 - (j.i >> 1);
x = j.f;
// Newton steps, repeating this increases accuracy
x = x*(1.5f - xhalf*x*x);
x = x*(1.5f - xhalf*x*x);
x = x*(1.5f - xhalf*x*x);
// x contains the inverse sqrt
// Multiply the inverse sqrt by the input to get the sqrt
*c = meansq * x;
}