practice_geomethicMeandian/cpp_impl/src/geothmetic_meandian.hpp
2021-05-01 22:31:59 +09:00

9 lines
148 B
C++

#ifndef GEOTHMETIC_MEANDIAN_HPP
#define GEOTHMETIC_MEANDIAN_HPP
#include <vector>
double geothmetic_meandian(std::vector<double> values);
#endif