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


Julia zero()用法及代碼示例


這個zero()是 julia 中的一個內置函數,用於返回 x 類型的附加標識元素,其中 x 也可能是類型本身。

用法: zero(x)

參數:

  • x:指定值。

返回值:它返回 x 類型的附加標識元素,其中 x 也可能是類型本身。

範例1:




# Julia program to illustrate 
# the use of zero() method
   
# Getting the additive identity element
# for the type of given parameter
println(zero(0))
println(zero(1))
println(zero(5.6))
println(zero(big"2.0"))

輸出:

範例2:


# Julia program to illustrate 
# the use of zero() method
   
# Getting the additive identity element
# for the type of given parameter
println(zero(rand(1, 1)))
println(zero(rand(2, 2)))
println(zero(rand(3, 3)))

輸出:

[0.0]
[0.0 0.0; 0.0 0.0]
[0.0 0.0 0.0; 0.0 0.0 0.0; 0.0 0.0 0.0]

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Getting additive identity element in Julia – zero() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。