cbrt
From cppreference.com
Defined in header <math.h>
|
||
float cbrtf( float arg ); |
(since C99) | |
double cbrt( double arg ); |
(since C99) | |
long double cbrtl( long double arg ); |
(since C99) | |
Computes cubic root of arg.
[edit] Parameters
arg | - | floating point value |
[edit] Return value
Cubic root of arg.
Domain error occurs if arg is negative. NAN is returned in that case.
[edit] See also
computes square root (√x) (function) | |
raises a number to the given power (xy) (function) | |
C++ documentation for cbrt
|