#include #include //From http://www.richelbilderbeek.nl/CppReciprocal.htm template void Reciprocal(Container& c) { std::transform(c.begin(),c.end(),c.begin(), std::bind1st(std::divides(),1.0)); }