関連するキーワード
ライブラリ
- rational (6)
検索結果
先頭2件
-
Fixnum
# rpower(other) -> Integer | Float | Rational (15114) -
冪(べき)乗を計算します。other が 0 以下の場合、計算結果を Rational オブジェクトで返します。
...0 以下の場合、計算結果を
Rational オブジェクトで返します。
@param other 自身を other 乗する数
2.rpower(3) # => 8
2.rpower(-3) # => Rational(1, 8)... -
Fixnum
# **(other) -> Integer | Float | Rational (14) -
冪(べき)乗を計算します。other が 0 以下の場合、計算結果を Rational オブジェクトで返します。
...0 以下の場合、計算結果を
Rational オブジェクトで返します。
@param other 自身を other 乗する数
2.rpower(3) # => 8
2.rpower(-3) # => Rational(1, 8)...
