這個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]
相關用法
- Julia one()用法及代碼示例
- Julia findmin()用法及代碼示例
- Julia first()用法及代碼示例
- Julia last()用法及代碼示例
- Julia ceil()用法及代碼示例
- Julia floor()用法及代碼示例
- Julia min()用法及代碼示例
- Julia axes()用法及代碼示例
- Julia parent()用法及代碼示例
- Julia typeof()用法及代碼示例
- Julia collect()用法及代碼示例
- Julia pairs()用法及代碼示例
- Julia conj()用法及代碼示例
- Julia max()用法及代碼示例
- Julia trunc()用法及代碼示例
- Julia abs()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Getting additive identity element in Julia – zero() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。