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