practice_geomethicMeandian/cpp_impl/src/geothmetic_meandian.hpp

9 lines
148 B
C++
Raw Normal View History

2021-05-01 13:31:59 +00:00
#ifndef GEOTHMETIC_MEANDIAN_HPP
#define GEOTHMETIC_MEANDIAN_HPP
#include <vector>
double geothmetic_meandian(std::vector<double> values);
#endif