Pietro Gagliardi wrote:
> double cbrt(double x) { return pow(x, 1.0 / 3.0); }Yeah, that's why I never felt the need to build it into the language. > I'm trying to find an intuitive implementation of gamma(). ? Gamma isn't very intuitive. It is essentially the factorial function "!" (with argument offset by 1) for the counting numbers, so you can think of the real part as the "natural" interpolating function for factorial.
