るりまサーチ (Ruby 2.4.0)

最速Rubyリファレンスマニュアル検索!
2件ヒット [1-2件を表示] (0.022秒)
トップページ > クラス:Complex[x] > バージョン:2.4.0[x] > クエリ:Numeric#quo[x]

別のキーワード

  1. numeric step
  2. _builtin numeric
  3. numeric quo
  4. numeric %
  5. numeric eql?

ライブラリ

キーワード

検索結果

Complex#quo(other) -> Complex (45361.0)

商を計算します。

...商を計算します。

@param other 自身を割る数

//emlist[例][ruby]{
Complex
(10.0) / 3 # => (3.3333333333333335+(0/1)*i)
Complex
(10) / 3 # => ((10/3)+(0/1)*i)
//}

@see Numeric#quo...

Complex#/(other) -> Complex (61.0)

商を計算します。

...商を計算します。

@param other 自身を割る数

//emlist[例][ruby]{
Complex
(10.0) / 3 # => (3.3333333333333335+(0/1)*i)
Complex
(10) / 3 # => ((10/3)+(0/1)*i)
//}

@see Numeric#quo...