當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。