るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.035秒)
トップページ > クラス:Complex[x] > ライブラリ:ビルトイン[x] > クエリ:complex[x] > クエリ:rectangular[x] > 種類:インスタンスメソッド[x]

別のキーワード

  1. _builtin complex
  2. complex rect
  3. complex polar
  4. complex rationalize

検索結果

Complex#rectangular -> [Numeric, Numeric] (24123.0)

実部と虚部を配列にして返します。

...実部と虚部を配列にして返します。

//emlist[例][ruby]{
Complex
(3).rect # => [3, 0]
Complex
(3.5).rect # => [3.5, 0]
Complex
(3, 2).rect # => [3, 2]
//}

@see Numeric#rect...

Complex#rect -> [Numeric, Numeric] (9023.0)

実部と虚部を配列にして返します。

...実部と虚部を配列にして返します。

//emlist[例][ruby]{
Complex
(3).rect # => [3, 0]
Complex
(3.5).rect # => [3.5, 0]
Complex
(3, 2).rect # => [3, 2]
//}

@see Numeric#rect...