22件ヒット
[1-22件を表示]
(0.433秒)
ライブラリ
- ビルトイン (22)
キーワード
- rect (11)
- rectangular (11)
検索結果
-
Complex
. rect(r , i = 0) -> Complex (3107.0) -
実部が r、虚部が i である Complex クラスのオブジェクトを生成します。
...ある Complex クラスのオブジェクトを生成します。
@param r 生成する複素数の実部。
@param i 生成する複素数の虚部。省略した場合は 0 です。
//emlist[例][ruby]{
Complex.rect(1) # => (1+0i)
Complex.rect(1, 2) # => (1+2i)
Complex.rectan......gular(1, 2) # => (1+2i)
//}
@see Kernel.#Complex... -
Complex
. rectangular(r , i = 0) -> Complex (3107.0) -
実部が r、虚部が i である Complex クラスのオブジェクトを生成します。
...ある Complex クラスのオブジェクトを生成します。
@param r 生成する複素数の実部。
@param i 生成する複素数の虚部。省略した場合は 0 です。
//emlist[例][ruby]{
Complex.rect(1) # => (1+0i)
Complex.rect(1, 2) # => (1+2i)
Complex.rectan......gular(1, 2) # => (1+2i)
//}
@see Kernel.#Complex...