|
MayaFlux 0.5.0
Digital-First Multimedia Processing Framework
|
Persistent state for an Estimate instance. More...
#include <Estimate.hpp>
Collaboration diagram for MayaFlux::Kinesis::Stochastic::EstimateState:Public Member Functions | |
| void | reset () |
Public Attributes | |
| double | filtered_value { 0.0 } |
| double | floor { 0.0 } |
| double | last_raw_sample { 0.0 } |
| double | running_mean { 0.0 } |
| double | running_variance { 0.0 } |
| uint64_t | sample_count { 0 } |
| double | trend_explained_ratio { 0.0 } |
| double | trend_slope { 0.0 } |
Persistent state for an Estimate instance.
Mirrors GeneratorState in role: a stateful process that evolves over successive calls needs somewhere to keep that evolution, exposed for analysis, visualization, or external nudging rather than hidden entirely inside the class. Not every field is meaningful for every EstimateModel; unused fields for a given model stay at their default.
Definition at line 38 of file Estimate.hpp.