cbrt(z)
returns the principal value of the cube root of z
# File lib/cmath.rb, line 149 def cbrt(z) z ** (1.0/3) end