pflib v3.9.4-12-gf8bd325
Pretty Fine HGCROC Interaction Library
Loading...
Searching...
No Matches
mean.h
1#pragma once
2
3#include <vector>
4
5namespace pflib::utility {
6
13double mean(const std::vector<int>& samples);
14
21double mean(const std::vector<double>& samples);
22
23} // namespace pflib::utility
Dumping ground for various functions that are used in many places.
Definition crc.cxx:9
double mean(const std::vector< double > &samples)
find the mean of the input vector of samples
Definition mean.cxx:16