當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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