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