本文简要介绍ruby语言中 Math.log
的用法。
用法
log(x) → Float
log(x, base) → Float
返回 x
的对数。如果给出额外的第二个参数,它将是对数的底。否则为e
(自然对数)。
域:(0,无穷大)
共域:(-INFINITY,INFINITY)
Math.log(0) #=> -Infinity
Math.log(1) #=> 0.0
Math.log(Math::E) #=> 1.0
Math.log(Math::E**3) #=> 3.0
Math.log(12, 3) #=> 2.2618595071429146
相关用法
- Ruby Math.log10用法及代码示例
- Ruby Math.log2用法及代码示例
- Ruby Math.lgamma用法及代码示例
- Ruby Math.ldexp用法及代码示例
- Ruby Math.acosh用法及代码示例
- Ruby Math.asinh用法及代码示例
- Ruby Math.sinh用法及代码示例
- Ruby Math.cbrt用法及代码示例
- Ruby Math.atan用法及代码示例
- Ruby Math.asin用法及代码示例
- Ruby Math.gamma用法及代码示例
- Ruby Math.erf用法及代码示例
- Ruby Math.cosh用法及代码示例
- Ruby Math.tan用法及代码示例
- Ruby Math.erfc用法及代码示例
- Ruby Math.tanh用法及代码示例
- Ruby Math.frexp用法及代码示例
- Ruby Math.exp用法及代码示例
- Ruby Math.acos用法及代码示例
- Ruby Math.sqrt用法及代码示例
- Ruby Math.cos用法及代码示例
- Ruby Math.atan2用法及代码示例
- Ruby Math.atanh用法及代码示例
- Ruby Math.sin用法及代码示例
- Ruby Math.hypot用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Math.log。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。