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

Version Path
webget_ramp-1.7.1.8 lib/webget_ramp/math.rb
webget_ramp-1.7.1.7 lib/webget_ramp/math.rb
webget_ramp-1.7.1.6 lib/webget_ramp/math.rb
webget_ramp-1.7.1.5 lib/webget_ramp/math.rb
webget_ramp-1.7.1.4 lib/webget_ramp/math.rb
webget_ramp-1.7.1.3 lib/webget_ramp/math.rb
webget_ramp-1.7.1.2 lib/webget_ramp/math.rb
webget_ramp-1.7.1.1 lib/webget_ramp/math.rb