|
#ifndef HISTOGRAM_H_INCLUDED
|
|
#define HISTOGRAM_H_INCLUDED
|
|
|
|
#include <vector>
|
|
|
|
|
|
bool find_minmax(std::vector<double> numbers, double& min, double& max);
|
|
std::vector<size_t> make_histogram(std::vector<double> numbers, size_t bin_count);
|
|
|
|
#endif // HISTOGRAM_H_INCLUDED
|