Ruby中的log10()函数返回X的以10为底的对数值。
用法: Math.log10(X)
参数:该函数采用一个必填参数X,该参数的X以10为底的对数值。
返回值:该函数以X的10为底的对数值。
例子1:
# Ruby program for log10() function
# Assigning values
val1 = 213
val2 = 256
val3 = 27
val4 = 100
# Prints the value returned by log10()
puts Math.log10(val1)
puts Math.log10(val2)
puts Math.log10(val3)
puts Math.log10(val4)
输出:
2.3283796034387376 2.4082399653118496 1.4313637641589874 2.0
例子2:
# Ruby program for log10() function
# Assigning values
val1 = 21
val2 = 2
val3 = 19
val4 = 121
# Prints the value returned by log10()
puts Math.log10(val1)
puts Math.log10(val2)
puts Math.log10(val3)
puts Math.log10(val4)
输出:
1.3222192947339193 0.3010299956639812 1.2787536009528289 2.08278537031645
参考: https://devdocs.io/ruby~2.5/math#method-c-log10
相关用法
- Ruby Math tan()用法及代码示例
- Ruby Math sin()用法及代码示例
- Ruby Math log()用法及代码示例
- Ruby Math cos()用法及代码示例
- Ruby Math erf()用法及代码示例
- Ruby Math exp()用法及代码示例
- Ruby Math acos()用法及代码示例
- Ruby Math atan2()用法及代码示例
- Ruby Math log2()用法及代码示例
- Ruby Math cosh()用法及代码示例
- Ruby Math acosh()用法及代码示例
- Ruby Math asin()用法及代码示例
- Ruby Math atan()用法及代码示例
- Ruby Math asinh()用法及代码示例
- Ruby Math atanh()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Math log10() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。