这个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))
输出:
相关用法
- Julia zero()用法及代码示例
- Julia ceil()用法及代码示例
- Julia floor()用法及代码示例
- Julia min()用法及代码示例
- Julia axes()用法及代码示例
- Julia findmin()用法及代码示例
- Julia parent()用法及代码示例
- Julia typeof()用法及代码示例
- Julia collect()用法及代码示例
- Julia first()用法及代码示例
- Julia last()用法及代码示例
- Julia pairs()用法及代码示例
- Julia conj()用法及代码示例
- Julia max()用法及代码示例
- Julia trunc()用法及代码示例
- Julia abs()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting multiplicative identity in Julia – one() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。