rurema / doctree

Repository of Japanese Ruby reference manual
https://docs.ruby-lang.org/ja/
246 stars 317 forks source link

BigMath.exp に与える引数の型 #242

Closed scivola closed 8 years ago

scivola commented 8 years ago

http://docs.ruby-lang.org/ja/2.3.0/method/BigMath/m/exp.html では,BigMath.exp の第一引数は

計算対象の数値を Fixnum、Bignum、BigDecimal オブジェクトのいずれかで指定します。

となっていますが,Float や Rational を与えることもでき,正しく扱えるようです。

puts BigMath.exp(-0.69314718, 8) #=> 0.5E0
puts BigMath.exp(1/2r, 9) #=> 0.164872127E1
sho-h commented 8 years ago

本当ですね。logの方はきちんと書いてるようですので、見落としたのかもしれません。ありがとうございました。