967件ヒット
[1-100件を表示]
(0.045秒)
別のキーワード
種類
- インスタンスメソッド (826)
- 特異メソッド (65)
- モジュール関数 (64)
- 文書 (12)
ライブラリ
- ビルトイン (712)
- bigdecimal (60)
-
bigdecimal
/ util (12) - date (24)
-
json
/ add / rational (24) - mathn (8)
- matrix (96)
-
net
/ http (7) - stringio (12)
クラス
キーワード
- * (24)
- ** (16)
- + (12)
- - (24)
- -@ (21)
-
/ (35) - <=> (24)
- == (12)
- BigDecimal (24)
- Ruby用語集 (12)
- at (53)
- ceil (12)
- coerce (48)
- cofactor (12)
-
cofactor
_ expansion (12) - convert (12)
- denominator (36)
- det (12)
- determinant (12)
- div (12)
- exp (12)
- fdiv (12)
- finite? (9)
- floor (12)
- hash (12)
- inspect (12)
-
json
_ create (12) -
laplace
_ expansion (12) - log (12)
- negative? (9)
- nonzero? (12)
- numerator (36)
- positive? (9)
- putc (12)
- quo (24)
- rand (36)
- rationalize (108)
- real (12)
- real? (12)
- round (12)
- rsqrt (4)
-
to
_ d (12) -
to
_ f (12) -
to
_ i (12) -
to
_ json (12) -
to
_ r (36) -
to
_ s (12) - tr (12)
- trace (12)
- truncate (12)
-
write
_ timeout= (7)
検索結果
先頭5件
-
Rational
# rationalize(eps = 0) -> Rational (27241.0) -
自身から eps で指定した許容誤差の範囲に収まるような Rational を返 します。
...な Rational を返
します。
eps を省略した場合は self を返します。
@param eps 許容する誤差
//emlist[例][ruby]{
r = Rational(5033165, 16777216)
r.rationalize # => (5033165/16777216)
r.rationalize(Rational(0.01)) # => (3/10)
r.rationalize(Rational(0.1))... -
Rational
# -@ -> Rational (27207.0) -
単項演算子の - です。 self の符号を反転させたものを返します。
...単項演算子の - です。
self の符号を反転させたものを返します。
//emlist[例][ruby]{
r = Rational(3, 4)
- r # => (-3/4)
//}... -
Rational
# floor(precision = 0) -> Integer | Rational (21215.0) -
自身と等しいかより小さな整数のうち最大のものを返します。
...ものを返します。
@param precision 計算結果の精度
@raise TypeError precision に整数以外のものを指定すると発生します。
//emlist[例][ruby]{
Rational(3).floor # => 3
Rational(2, 3).floor # => 0
Rational(-3, 2).floor # => -2
//}
Rational#to_i とは違う結......uby]{
Rational(+7, 4).to_i # => 1
Rational(+7, 4).floor # => 1
Rational(-7, 4).to_i # => -1
Rational(-7, 4).floor # => -2
//}
precision を指定した場合は指定した桁数の数値と、上述の性質に最も近い整
数か Rational を返します。
//emlist[例][ruby]{
Rational('-12......3.456').floor(+1) # => (-247/2)
Rational('-123.456').floor(+1).to_f # => -123.5
Rational('-123.456').floor(0) # => -124
Rational('-123.456').floor(-1) # => -130
//}
@see Rational#ceil, Rational#round, Rational#truncate... -
Rational
# round(precision = 0) -> Integer | Rational (21191.0) -
自身ともっとも近い整数を返します。
...れ 1,-1 に切り上げされます。
@param precision 計算結果の精度
@raise TypeError precision に整数以外のものを指定すると発生します。
//emlist[例][ruby]{
Rational(3).round # => 3
Rational(2, 3).round # => 1
Rational(-3, 2).round # => -2
//}
precision を指......か Rational を返します。
//emlist[例][ruby]{
Rational('-123.456').round(+1) # => (-247/2)
Rational('-123.456').round(+1).to_f # => -123.5
Rational('-123.456').round(0) # => -123
Rational('-123.456').round(-1) # => -120
Rational('-123.456').round(-2) # => -100
//}
@see......Rational#ceil, Rational#floor, Rational#truncate... -
Rational
# truncate(precision = 0) -> Rational | Integer (21191.0) -
小数点以下を切り捨てて値を整数に変換します。
...ます。
@param precision 計算結果の精度
@raise TypeError precision に整数以外のものを指定すると発生します。
//emlist[例][ruby]{
Rational(2, 3).to_i # => 0
Rational(3).to_i # => 3
Rational(300.6).to_i # => 300
Rational(98, 71).to_i # => 1
Rational(-31, 2).to_i......か
Rational を返します。
//emlist[例][ruby]{
Rational('-123.456').truncate(+1) # => (-617/5)
Rational('-123.456').truncate(+1).to_f # => -123.4
Rational('-123.456').truncate(0) # => -123
Rational('-123.456').truncate(-1) # => -120
//}
@see Rational#ceil, Rational#floor... -
Rational
# ceil(precision = 0) -> Integer | Rational (21185.0) -
自身と等しいかより大きな整数のうち最小のものを返します。
...うち最小のものを返します。
@param precision 計算結果の精度
@raise TypeError precision に整数以外のものを指定すると発生します。
//emlist[例][ruby]{
Rational(3).ceil # => 3
Rational(2, 3).ceil # => 1
Rational(-3, 2).ceil # => -1
//}
precision を指......か Rational を返します。
//emlist[例][ruby]{
Rational('-123.456').ceil(+1) # => (-617/5)
Rational('-123.456').ceil(+1).to_f # => -123.4
Rational('-123.456').ceil(0) # => -123
Rational('-123.456').ceil(-1) # => -120
//}
@see Rational#floor, Rational#round, Rational#trunc... -
Rational
# convert(*arg) -> Rational (21141.0) -
引数を有理数(Rational)に変換した結果を返します。
...引数を有理数(Rational)に変換した結果を返します。
@param arg 変換対象のオブジェクトです。
Kernel.#Rational の本体です。
@see Kernel.#Rational... -
Rational
# / (other) -> Rational | Float (21132.0) -
商を計算します。
...算します。
@param other 自身を割る数
other に Float を指定した場合は、計算結果を Float で返します。
//emlist[例][ruby]{
r = Rational(3, 4)
r / 2 # => (3/8)
r / 2.0 # => 0.375
r / 0.5 # => 1.5
r / Rational(1, 2) # => (3/2)......r / 0 # => ZeroDivisionError
//}
@raise ZeroDivisionError other が 0 の時に発生します。
@see Numeric#quo... -
Rational
# quo(other) -> Rational | Float (21132.0) -
商を計算します。
...算します。
@param other 自身を割る数
other に Float を指定した場合は、計算結果を Float で返します。
//emlist[例][ruby]{
r = Rational(3, 4)
r / 2 # => (3/8)
r / 2.0 # => 0.375
r / 0.5 # => 1.5
r / Rational(1, 2) # => (3/2)......r / 0 # => ZeroDivisionError
//}
@raise ZeroDivisionError other が 0 の時に発生します。
@see Numeric#quo...