るりまサーチ (Ruby 2.5.0)

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

別のキーワード

  1. numeric step
  2. _builtin numeric
  3. numeric quo
  4. numeric arg
  5. numeric imag

キーワード

検索結果

Complex#quo(other) -> Complex (45349.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 (49.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...