本文简要介绍ruby语言中 Math.cbrt
的用法。
用法
cbrt(x) → Float
返回 x
的立方根。
域:(-INFINITY,INFINITY)
共域:(-INFINITY,INFINITY)
-9.upto(9) {|x|
p [x, Math.cbrt(x), Math.cbrt(x)**3]
}
#=> [-9, -2.0800838230519, -9.0]
# [-8, -2.0, -8.0]
# [-7, -1.91293118277239, -7.0]
# [-6, -1.81712059283214, -6.0]
# [-5, -1.7099759466767, -5.0]
# [-4, -1.5874010519682, -4.0]
# [-3, -1.44224957030741, -3.0]
# [-2, -1.25992104989487, -2.0]
# [-1, -1.0, -1.0]
# [0, 0.0, 0.0]
# [1, 1.0, 1.0]
# [2, 1.25992104989487, 2.0]
# [3, 1.44224957030741, 3.0]
# [4, 1.5874010519682, 4.0]
# [5, 1.7099759466767, 5.0]
# [6, 1.81712059283214, 6.0]
# [7, 1.91293118277239, 7.0]
# [8, 2.0, 8.0]
# [9, 2.0800838230519, 9.0]
相关用法
- Ruby Math.cosh用法及代码示例
- Ruby Math.cos用法及代码示例
- Ruby Math.acosh用法及代码示例
- Ruby Math.asinh用法及代码示例
- Ruby Math.sinh用法及代码示例
- Ruby Math.log10用法及代码示例
- Ruby Math.atan用法及代码示例
- Ruby Math.asin用法及代码示例
- Ruby Math.gamma用法及代码示例
- Ruby Math.erf用法及代码示例
- Ruby Math.tan用法及代码示例
- Ruby Math.erfc用法及代码示例
- Ruby Math.tanh用法及代码示例
- Ruby Math.lgamma用法及代码示例
- Ruby Math.frexp用法及代码示例
- Ruby Math.exp用法及代码示例
- Ruby Math.ldexp用法及代码示例
- Ruby Math.acos用法及代码示例
- Ruby Math.sqrt用法及代码示例
- Ruby Math.atan2用法及代码示例
- Ruby Math.atanh用法及代码示例
- Ruby Math.sin用法及代码示例
- Ruby Math.log2用法及代码示例
- Ruby Math.hypot用法及代码示例
- Ruby Math.log用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Math.cbrt。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。