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