るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.035秒)
トップページ > クラス:Rational[x] > クエリ:rational[x] > クエリ:**[x] > ライブラリ:ビルトイン[x]

別のキーワード

  1. _builtin rational
  2. json/add/rational to_json
  3. json/add/rational json_create
  4. rational *

検索結果

Rational#**(other) -> Rational | Float (27246.0)

冪(べき)乗を計算します。

...す。other が有理数であっても、計算結果が無理数だった場合は Float
を返します。

//emlist[例][ruby]{
r = Rational(3, 4)
r ** Rational(2, 1) # => (9/16)
r ** 2 # => (9/16)
r ** 2.0 # => 0.5625
r ** Rational(1, 2) # => 0.866025403784439
//}...

Rational#to_f -> Float (9075.0)

自身の値を最も良く表現する Float に変換します。

...{
Rational
(2).to_f # => 2.0
Rational
(9, 4).to_f # => 2.25
Rational
(-3, 4).to_f # => -0.75
Rational
(20, 3).to_f # => 6.666666666666667
Rational
(1, 10**1000).to_f # => 0.0
Rational
(-1, 10**1000).to_f # => -0.0
Rational
(10**1000).to_f # => Infinity
Rational
(...
...-10**1000).to_f # => -Infinity
//}...