📜  在 Julia 中获取复数的复共轭 - conj() 方法

📅  最后修改于: 2022-05-13 01:55:26.080000             🧑  作者: Mango

在 Julia 中获取复数的复共轭 - conj() 方法

conj()是 julia 中的内置函数,用于计算指定复数 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))

输出: