当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。