polar(r, theta = 0) -> Complex
[permalink][rdoc][edit]-
絶対値が r、偏角が theta である Complex クラスのオブジェクトを生成します。
- [PARAM] r:
- 生成する複素数の絶対値。
- [PARAM] theta:
- 生成する複素数の偏角。単位はラジアンです。省略した場合は 0 です。
Complex.polar(2.0) # => (2.0+0.0i) Complex.polar(2.0, 0) # => (2.0+0.0i) Complex.polar(2.0, Math::PI) # => (-2.0+2.4492127076447545e-16i)