Ruby中的log2()函數返回X的以2為底的對數值。
用法: Math.log2(X)
參數:該函數采用一個強製性參數X,該參數的X以2為底的對數值。
返回值:該函數以X的2為底的對數值。
例子1:
# Ruby program for log2() function
# Assigning values
val1 = 213
val2 = 256
val3 = 27
val4 = 100
# Prints the value returned by log2()
puts Math.log2(val1)
puts Math.log2(val2)
puts Math.log2(val3)
puts Math.log2(val4)
輸出:
7.734709620225838 8.0 4.754887502163468 6.643856189774724
例子2:
# Ruby program for log2() function
# Assigning values
val1 = 21
val2 = 2
val3 = 19
val4 = 121
# Prints the value returned by log2()
puts Math.log2(val1)
puts Math.log2(val2)
puts Math.log2(val3)
puts Math.log2(val4)
輸出:
4.392317422778761 1.0 4.247927513443585 6.918863237274595
參考: https://devdocs.io/ruby~2.5/math#method-c-log2
相關用法
- Ruby Math tan()用法及代碼示例
- Ruby Math sin()用法及代碼示例
- Ruby Math cos()用法及代碼示例
- Ruby Math log()用法及代碼示例
- Ruby Math erf()用法及代碼示例
- Ruby Math exp()用法及代碼示例
- Ruby Math atanh()用法及代碼示例
- Ruby Math erfc()用法及代碼示例
- Ruby Math lgamma()用法及代碼示例
- Ruby Math log10()用法及代碼示例
- Ruby Math atan2()用法及代碼示例
- Ruby Math cosh()用法及代碼示例
- Ruby Math atan()用法及代碼示例
- Ruby Math cbrt()用法及代碼示例
- Ruby Math frexp()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Math log2() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。