Complex#conj()是Complex类方法,它返回复数值极性形式的共轭部分。
用法:Complex.conj()
参数:复数值
返回:共轭部分的极值形式为复数。
示例1:
# Ruby code for Complex.conj() method
# declaring Complex value
a = Complex(200)
# declaring Complex value
b = Complex(-1, 4)
# declaring Complex value
c = Complex('i')
# use of conj()
puts "Complex conj form : #{a.conj}\n\n"
puts "Complex conj form : #{b.conj}\n\n"
puts "Complex conj form : #{c.conj}\n\n"
输出:
Complex conj form : 200+0i Complex conj form : -1-4i Complex conj form : 0-1i
示例2:
# Ruby code for Complex.conj() method
# declaring Complex value
a = Complex(20, 90)
# declaring Complex value
b = Complex('i')
# declaring Complex value
c = Complex(100, -500)
# use of conj()
puts "Complex conj form : #{a.conj}\n\n"
puts "Complex conj form : #{b.conj}\n\n"
puts "Complex conj form : #{c.conj}\n\n"
输出:
Complex conj form : 20-90i Complex conj form : 0-1i Complex conj form : 100+500i
注:本文由纯净天空筛选整理自 Ruby | Complex conj function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。