這個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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。