455件ヒット
[1-100件を表示]
(0.030秒)
別のキーワード
種類
- インスタンスメソッド (215)
- モジュール関数 (192)
- 特異メソッド (48)
ライブラリ
- ビルトイン (275)
- bigdecimal (12)
- cmath (120)
- fileutils (24)
-
json
/ add / complex (24)
キーワード
- * (12)
- ** (12)
- + (12)
- - (12)
-
/ (23) - <=> (6)
- == (12)
- Rational (12)
- acos (6)
- acosh (6)
- asin (6)
- asinh (6)
- atan (6)
- atan2 (6)
- atanh (6)
- cbrt (6)
- copy (12)
- cos (6)
- cosh (6)
- cp (12)
- exp (6)
- fdiv (54)
-
json
_ create (12) - log (24)
- log10 (6)
- log2 (6)
- polar (12)
- quo (24)
- rationalize (24)
- rect (12)
- rectangular (12)
- sin (6)
- sinh (6)
- sqrt (6)
- tan (6)
- tanh (6)
-
to
_ json (12) -
to
_ r (12)
検索結果
先頭5件
-
Complex
. rect(r , i = 0) -> Complex (21154.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 (21154.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
. polar(r , theta = 0) -> Complex (21147.0) -
絶対値が r、偏角が theta である Complex クラスのオブジェクトを生成します。
...る Complex クラスのオブジェクトを生成します。
@param r 生成する複素数の絶対値。
@param theta 生成する複素数の偏角。単位はラジアンです。省略した場合は 0 です。
//emlist[例][ruby]{
Complex.polar(2.0) # => (2.0+0.0i)
Complex.po......lar(2.0, 0) # => (2.0+0.0i)
Complex.polar(2.0, Math::PI) # => (-2.0+2.4492127076447545e-16i)
//}... -
Complex
# *(other) -> Complex (21131.0) -
積を計算します。
...積を計算します。
@param other 自身に掛ける数
//emlist[例][ruby]{
Complex(1, 2) * 2 # => (2+4i)
Complex(1, 2) * Complex(2, 3) # => (-4+7i)
Complex(1, 2) * Rational(1, 2) # => ((1/2)+(1/1)*i)
//}... -
Complex
# fdiv(other) -> Complex (21125.0) -
self を other で割った商を返します。 実部と虚部が共に Float の値になります。
...elf を other で割った商を返します。
実部と虚部が共に Float の値になります。
@param other 自身を割る数
//emlist[例][ruby]{
Complex(11, 22).fdiv(3) # => (3.6666666666666665+7.333333333333333i)
Complex(11, 22).quo(3) # => ((11/3)+(22/3)*i)
//}
@see Complex#quo... -
Complex
. json _ create(hash) -> Complex (21123.0) -
JSON のオブジェクトから Complex のオブジェクトを生成して返します。
...JSON のオブジェクトから Complex のオブジェクトを生成して返します。
@param hash 実部をキー 'r'、虚部をキー 'i' に持つハッシュを指定します。... -
Complex
# / (other) -> Complex (21120.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
# quo(other) -> Complex (21120.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 (21119.0) -
和を計算します。
...和を計算します。
@param other 自身に足す数
//emlist[例][ruby]{
Complex(1, 2) + Complex(2, 3) # => (3+5i)
//}...