クラスの継承リスト: Complex < Numeric < Comparable < Object < Kernel < BasicObject 要約 複素数を扱うクラスです。 Complex オブジェクトを作成するには、Kernel.#Complex、 Complex.rect、Complex.polar、Numeric#to_c、 String#to_c のいずれかを使用します。 Complex(1) # => (1+0i) Complex(2, 3) # => (2+3i) Complex.polar(2, 3) # => (-1.9799849932008908+0.2822400161197344i) Complex(0.3) # => (0.3+0i) Complex('0.3-0.5i') # => (0.3-0.5i) Complex('2/3+3/4i') # => (