-
Notifications
You must be signed in to change notification settings - Fork 31
/
ewma.h
78 lines (66 loc) · 2.17 KB
/
ewma.h
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
* This file is part of dsp.
*
* Copyright (c) 2022-2024 Michael Barbour <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef DSP_EWMA_H
#define DSP_EWMA_H
#include <math.h>
struct ewma_state {
double c0, c1, m0;
};
#define EWMA_RISE_TIME(x) ((x)/1000.0/2.1972) /* 10%-90% rise time in ms */
/* note: tc is the time constant in seconds */
static inline void ewma_init(struct ewma_state *state, double fs, double tc)
{
const double a = 1.0-exp(-1.0/(fs*tc));
state->c0 = a;
state->c1 = 1.0-a;
state->m0 = 0.0;
}
static inline double ewma_run(struct ewma_state *state, double s)
{
const double r = state->c0*s + state->c1*state->m0;
state->m0 = r;
return r;
}
/* note: sf > 1.0 means a faster rise time */
static inline double ewma_run_scale(struct ewma_state *state, double s, double sf)
{
const double c = (state->c0*sf > 0.39) ? 0.39 : state->c0*sf;
const double r = c*s + (1.0-c)*state->m0;
state->m0 = r;
return r;
}
static inline double ewma_run_scale_asym(struct ewma_state *state, double s, double rise_sf, double fall_sf)
{
return (s >= state->m0) ? ewma_run_scale(state, s, rise_sf) : ewma_run_scale(state, s, fall_sf);
}
static inline double ewma_run_set_max(struct ewma_state *state, double s)
{
if (s >= state->m0) s = ewma_run(state, s);
else state->m0 = s;
return s;
}
static inline double ewma_set(struct ewma_state *state, double s)
{
state->m0 = s;
return s;
}
static inline double ewma_get_last(struct ewma_state *state)
{
return state->m0;
}
#endif