Sha256: fe7a0d413b1379db593151d1b1fd34d2e8936f4d444aa750687d03dd35065833
Contents?: true
Size: 184 Bytes
Versions: 8
Compression:
Stored size: 184 Bytes
Contents
module Math # Return the natural log of x def Math.ln(x) Math.log(x) end # Return the log of x in base b. def Math.logn(x,b) Math.ln(x)/Math.ln(b) end end
Version data entries
8 entries across 8 versions & 1 rubygems