FloatingPointComparisonCubeRoot Method |
Computes the real-valued cube root if a given number. The cube root of a negative value is the
negative of the cube root of that value's magnitude.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static double CubeRoot(
double x
)
Public Shared Function CubeRoot (
x As Double
) As Double
public:
static double CubeRoot(
double x
)
static member CubeRoot :
x : float -> float
Parameters
- x
- Type: SystemDouble
The value for which to compute the cube root.
Return Value
Type:
DoubleThe cube root.
See Also