这个trunc()
是 julia 中的一个内置函数,用于返回与指定值 x 相同类型的最近整数值,其绝对值小于或等于 x。
用法: trunc(x)
参数:
- x:指定值。
返回值:它返回与指定值 x 相同类型的最近整数值,其绝对值小于或等于 x。
范例1:
# Julia program to illustrate
# the use of trunc() method
# Getting the nearest integral value
# of the same type as the specified value
# x whose absolute value is less
# than or equal to x
println(trunc(3))
println(trunc(0.5))
println(trunc(3.9))
输出:
3 0.0 3.0
范例2:
# Julia program to illustrate
# the use of trunc() method
# Getting the nearest integral value
# of the same type as the specified value
# x whose absolute value is less
# than or equal to x
println(trunc(0))
println(trunc(2))
println(trunc(2.1))
println(trunc(2.5))
println(trunc(2.9))
输出:
0 2 2.0 2.0 2.0
相关用法
- Julia ceil()用法及代码示例
- Julia floor()用法及代码示例
- Julia min()用法及代码示例
- Julia pairs()用法及代码示例
- Julia max()用法及代码示例
- Julia abs()用法及代码示例
- Julia mod()用法及代码示例
- Julia round()用法及代码示例
- Julia axes()用法及代码示例
- Julia findmin()用法及代码示例
- Julia parent()用法及代码示例
- Julia typeof()用法及代码示例
- Julia collect()用法及代码示例
- Julia first()用法及代码示例
- Julia last()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting the nearest integral value of x in Julia – trunc() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。