这个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))
输出:
相关用法
- Julia conj!()用法及代码示例
- Julia abs()用法及代码示例
- Julia factorial()用法及代码示例
- Julia binomial()用法及代码示例
- Julia round()用法及代码示例
- Julia ceil()用法及代码示例
- Julia floor()用法及代码示例
- Julia min()用法及代码示例
- Julia axes()用法及代码示例
- Julia findmin()用法及代码示例
- Julia parent()用法及代码示例
- Julia typeof()用法及代码示例
- Julia collect()用法及代码示例
- Julia first()用法及代码示例
- Julia last()用法及代码示例
- Julia pairs()用法及代码示例
- Julia one()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting complex conjugate of a complex number in Julia – conj() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。