Computes the cube root.
#include <math.h> double cbrt(double x); float cbrtf(float fx); long double cbrtl(long double lx);
x
A value from which to compute a cube root.
This function computes the cube root of its argument.
This facility may not be available on configurations of the EWL that run on platforms that do not have floating-point math capabilities.