log10(z)
returns the base 10 logarithm of z
# File lib/cmath.rb, line 107 def log10(z) begin if z.real? and z >= 0 log10!(z) else log(z) / log!(10) end rescue NoMethodError handle_no_method_error end end