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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。