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