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


Julia one()用法及代码示例


这个one()是 julia 中的内置函数,用于返回指定值 x 的乘法标识,其中 x 是满足 one(x)*x == x*one(x) == x 的值。

用法:
one(x)
or
one(T::type)

参数:

  • 指定值。
  • 一(T::类型):指定的号码类型。

返回值:它返回指定值 x 的乘法标识,其中 x 是满足 one(x)*x == x*one(x) == x 的值。

范例1:




# Julia program to illustrate 
# the use of one() method
   
# Getting return a multiplicative 
# identity of the specified value x
println(one(0))
println(one(1))
println(one(5))
println(one(5.9))

输出:

1
1
1
1.0

范例2:


# Julia program to illustrate 
# the use of one() method
   
# Getting return a multiplicative 
# identity of the specified number type
println(one(Int))
println(one(String))

输出:

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting multiplicative identity in Julia – one() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。