fdiv(other) -> Complex
[permalink][rdoc][edit]-
self を other で割った商を返します。実部と虚部が共に Float の値になります。
- [PARAM] other:
- 自身を割る数
Complex(11, 22).fdiv(3) # => (3.6666666666666665+7.333333333333333i) Complex(11, 22).quo(3) # => ((11/3)+(22/3)*i)
[SEE_ALSO] Complex#quo