CBRT(3) Library Functions Manual CBRT(3)
NAME
cbrt — cube root
function
SYNOPSIS
#include <math.h> double cbrt(double x);
DESCRIPTION
The cbrt() function computes the cube root of x .
RETURN VALUE
On successful completion, cbrt() returns the cube root of x . If x is NaN, cbrt() returns NaN and errno may be set to [EDOM].
ERRORS
The cbrt() function may fail if:
- [EDOM]
- The value of x is NaN.
EXAMPLES
None.
APPLICATION USAGE
None.
FUTURE DIRECTIONS
None.
SEE ALSO
<math.h> .
February 1997 posix.fail