Java.Lang.StrictMath.Cbrt Method
Returns the closest double approximation of the cube root of the argument.

Syntax

[Android.Runtime.Register("cbrt", "(D)D", "")]
public static double Cbrt (double d)

Parameters

d
the value whose cube root has to be computed.

Returns

Documentation for this section has not yet been entered.

Remarks

Returns the closest double approximation of the cube root of the argument.

Special cases:

  • cbrt(+0.0) = +0.0
  • cbrt(-0.0) = -0.0
  • cbrt(+infinity) = +infinity
  • cbrt(-infinity) = -infinity
  • cbrt(NaN) = NaN

[Android Documentation]

Requirements

Namespace: Java.Lang
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1