Return to Snippet

Revision: 7431
at July 24, 2008 01:03 by octech


Initial Code
# 任意の底 a を持つ x の対数を計算.
def logA( x, a )
  return (Math.log(x)/Math.log(a))
end

p logA( 2, 2 ) # => 1.0
p logA( 4, 2 ) # => 2.0

Initial URL
http://d.hatena.ne.jp/octech/20080724#1216874092

Initial Description
英語のタイトルが適当な英訳なので、誰かOK/NGを教えてください。

Initial Title
Logarithm with any base (任意の底を持つ対数)

Initial Tags
math, log

Initial Language
Ruby