58 float abs(softfloat f);
95 float acos(softfloat f);
125 float asin(softfloat f);
162 float atan(softfloat f);
201 float atan2(softfloat y, softfloat x);
238 float cbrt(softfloat f);
279 float ceil(softfloat f);
353 float cosh(softfloat f);
390 float exp(softfloat f);
427 float exp2(softfloat f);
464 float expm1(softfloat f);
501 float floor(softfloat f);
540 float hypot(softfloat x, softfloat y);
577 float log10(softfloat f);
614 float log1p(softfloat f);
636 float logb(softfloat f);
673 float nlog(softfloat f);
717 float pow(softfloat x = 0.0, softfloat y = 0.0);
750 float round(softfloat f);
787 float sin(softfloat f);
824 float sinh(softfloat f);
861 float sqrt(softfloat f);
898 float tan(softfloat f);
935 float tanh(softfloat f);
961 const MININT = qore(
new QoreBigIntNode(-LLONG_MAX - 1));
963 const M_PI = 3.14159265358979323846;
int abs(int i)
Returns the absolute value of the argument passed.
number tan(number n)
Returns the tangent of the number in radians passed.
number exp(number n)
Returns the value of e (the base of natural logarithms) raised to the power of the given number...
const MAXINT
largest integer
Definition: ql_math.dox.h:957
number expm1(number n)
Returns the value of e (the base of natural logarithms) raised to the power of the given number - 1...
number hypot(number x, number y)
Returns the length of the hypotenuse of a right-angle triangle with sides given as the two arguments...
number round(number n)
Returns a number equal to the closest integer to the argument passed; numbers halfway between two int...
number number(softnumber n)
Converts the argument to a number value.
number asin(number n)
Returns the value in radians of the arc sine of the given value.
float logb(softfloat f)
Returns the exponent of the given number.
number exp2(number n)
Returns the value of 2 raised to the power of the given number.
number floor(softnumber n)
Returns a number equal to the largest integral value less than or equal to the argument passed...
number sqrt(number n)
Returns the square root of the number passed.
const MININT
smallest integer
Definition: ql_math.dox.h:961
number cosh(number n)
Returns the hyperbolic cosine of the given value.
number log1p(number n)
Returns the natural logarithm of 1 + the given number.
number log10(number n)
Returns the base 10 logarithm of the given number.
number nlog(number n)
Returns the natural logarithm of the given value.
number ceil(number n)
Returns a number equal to the smallest integral value greater than or equal to the argument passed...
number sin(number n)
Returns the sine of the number in radians passed.
number sinh(number n)
Returns the hyperbolic sine of the given value.
number atan2(number y, number x)
Returns the principal value of the arc tangent of y/x, using the signs of the two arguments to determ...
number tanh(number n)
Returns the hyperbolic tangent of the given value.
const M_PI
PI (floating-point)
Definition: ql_math.dox.h:963
number acos(number n)
Returns the value in radians of the arc cosine of the given value.
number cos(number n)
Returns the cosine of the number in radians passed.
const M_PIn
PI (arbitrary-precision numeric)
Definition: ql_math.dox.h:967
number cbrt(number n)
Returns the cube root of the number passed.
number atan(number n)
Returns the value in radians of the arc tangent of the given value.
number pow(number x, number y)
Returns a number raised to the power of another number.