るりまサーチ

最速Rubyリファレンスマニュアル検索!
380件ヒット [1-100件を表示] (0.102秒)

別のキーワード

  1. bigdecimal/util to_d
  2. float to_d
  3. rsa d
  4. rsa d=
  5. matrix d

検索結果

<< 1 2 3 ... > >>

DateTime#min -> Integer (21102.0)

分を返します (0-59)。

分を返します (0-59)。

Gem::Package::TarHeader#devminor -> Integer (15201.0)

tar のヘッダに含まれる devminor を返します。

...tar のヘッダに含まれる devminor を返します。...

Complex#denominator -> Integer (12201.0)

分母を返します。

...と虚部の分母の最小公倍数を整数で返します。

1 2 3+4i <- numerator(分子)
- + -i -> ----
2 3 6 <- denominator(分母)

//emlist[例][ruby]{
Complex('1/2+2/3i').denominator # => 6
Complex(3).numerator # => 1
//}

@see Complex#numerator...

File::Stat#dev_minor -> Integer (12201.0)

dev の minor 番号部を返します。

...dev の minor 番号部を返します。

//emlist[][ruby]{
fs = File::Stat.new($0)
p fs.dev_minor
#例
#=> nil
//}...

File::Stat#rdev_minor -> Integer (12201.0)

rdev の minor 番号部を返します。

...rdev の minor 番号部を返します。

//emlist[][ruby]{
fs = File::Stat.new($0)
#例
p fs.rdev_minor #=> nil
//}...

絞り込み条件を変える

Float#denominator -> Integer (12201.0)

自身を Rational に変換した時の分母を返します。

...自身を Rational に変換した時の分母を返します。

@return 分母を返します。

//emlist[例][ruby]{
2.0.denominator # => 1
0.5.denominator # => 2
//}

@see Float#numerator...

GetoptLong#terminated? -> true | false (12201.0)

エラーが起きずにオプションの処理が終了しているときは真が 返ります。それ以外のときは、偽が返ります。

エラーが起きずにオプションの処理が終了しているときは真が
返ります。それ以外のときは、偽が返ります。

Integer#denominator -> Integer (12201.0)

分母(常に1)を返します。

...分母(常に1)を返します。

@return 分母を返します。

//emlist[][ruby]{
10.denominator # => 1
-10.denominator # => 1
//}

@see Integer#numerator...

Matrix::LUPDecomposition#determinant -> Numeric (12201.0)

元の行列の行列式の値を返します。 LUP 分解の結果を利用して計算します。

...元の行列の行列式の値を返します。
LUP 分解の結果を利用して計算します。

@see Matrix#determinant...
<< 1 2 3 ... > >>