当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia conj()用法及代码示例


这个conj()是 julia 中的一个内置函数,用于计算指定复数 z 的复共轭。

用法: conj(z)

参数:

  • z:指定的复数。

返回值:它返回指定复数 z 的复共轭。

范例1:




# Julia program to illustrate 
# the use of conj() method
   
# Getting the complex conjugate of 
# a specified complex number z.
println(conj(0))
println(conj(1))
println(conj(1 + im))
println(conj(2 - im))

输出:

范例2:


# Julia program to illustrate 
# the use of conj() method
   
# Getting the complex conjugate of 
# a specified complex number z.
println(conj(5 + 7im))
println(conj(3 - 8im))
println(conj(2 * 4im))
println(conj(3 / 2im))

输出:

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting complex conjugate of a complex number in Julia – conj() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。