Ruby
1.9.3p448(2013-06-27revision41675)
Main Page
Modules
Data Structures
Files
File List
Globals
missing
cbrt.c
Go to the documentation of this file.
1
#include "
ruby/missing.h
"
2
#include <math.h>
3
4
double
cbrt
(
double
x)
5
{
6
if
(x < 0)
7
return
-pow(-x, 1/3.0);
8
else
9
return
pow(x, 1/3.0);
10
}
11
cbrt
double cbrt(double x)
Definition:
cbrt.c:4
missing.h
Generated on Thu Jul 31 2014 19:14:29 for Ruby by
1.8.7