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


Julia trunc()用法及代码示例


这个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

相关用法


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