這個ceil()
是 julia 中的一個內置函數,用於返回大於或等於指定值 x 的最接近的整數值。
用法: ceil(x)
參數:
- x:指定值。
返回值:它返回大於或等於指定值 x 的最接近的整數值。
範例1:
# Julia program to illustrate
# the use of ceil method
# Getting the nearest integral value
# greater than or equal to the
# specified value x.
println(ceil(5))
println(ceil(5.9))
println(ceil(5.5))
輸出:
5 6.0 6.0
範例2:
# Julia program to illustrate
# the use of ceil method
# Getting the nearest integral value
# greater than or equal to the
# specified value x.
println(ceil(2))
println(ceil(2.1))
println(ceil(2.4))
println(ceil(2.5))
println(ceil(2.6))
println(ceil(2.9))
輸出:
2 3.0 3.0 3.0 3.0 3.0
相關用法
- Julia floor()用法及代碼示例
- 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 ceiling value of x in Julia – ceil() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。