kotlin / 1.7 / api / latest / jvm / stdlib / kotlin.math / cbrt.html

cbrt

Platform and version requirements: JVM (1.7), JS (1.7), Native (1.7)
@ExperimentalStdlibApi fun cbrt(x: Double): Double
@ExperimentalStdlibApi fun cbrt(x: Float): Float

Returns the cube root of x. For any x, cbrt(-x) == -cbrt(x); that is, the cube root of a negative value is the negative of the cube root of that value's magnitude. Special cases:

Special cases:

  • If the argument is NaN, then the result is NaN.
  • If the argument is infinite, then the result is an infinity with the same sign as the argument.
  • If the argument is zero, then the result is a zero with the same sign as the argument.

© 2010–2022 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.math/cbrt.html