laba_34/histogram.h

10 строки
204 B
C++

#pragma once
#include <vector>
std::vector<size_t>
make_histogram(const std::vector<double>& numbers, size_t bin_count);
bool
find_minmax(const std::vector<double>& numbers, double& min, double& max);