double cbrt(double x) { return pow(x, 1.0 / 3.0); }

I'm trying to find an intuitive implementation of gamma().

On Nov 16, 2007, at 5:19 AM, Douglas A. Gwyn wrote:

cbrt is in the 1999 C standard.
However, my version of "hoc" doesn't have a "cbrt" function,
and I've never felt the need for one.

Reply via email to