STORMM Source Documentation
Loading...
Searching...
No Matches
src
Math
statistics.h
1
// -*-c++-*-
2
#ifndef STORMM_STATISTICS_H
3
#define STORMM_STATISTICS_H
4
5
#include "copyright.h"
6
#include "statistical_enumerators.h"
7
8
namespace
stormm {
9
namespace
stmath {
10
20
double
running_variance(
double
sum_of_squares,
double
sum_of_values,
int
sample_count,
21
VarianceMethod method = VarianceMethod::VARIANCE);
22
29
double
running_stdev(
double
sum_of_squares,
double
sum_of_values,
int
sample_count);
30
36
double
running_rmsd(
double
sum_of_squares,
double
sum_of_values,
int
sample_count);
37
44
double
running_coefficient_of_variation(
double
sum_of_squares,
double
sum_of_values,
45
int
sample_count);
46
53
double
running_normalized_rmsd(
double
sum_of_squares,
double
sum_of_values,
int
sample_count);
54
55
}
// namespace stmath
56
}
// namespace stormm
57
58
#endif
Generated by
1.13.2