+
|
Add
|
−
|
Subtract
|
*
|
Multiply
|
/
|
Divide
|
%
|
Return the remainder of integer division.
|
1/A
|
Return the reciprocal of A.
|
ceil(A)
|
Return the ceiling of A, the smallest
integer value greater than or equal to A.
|
fabs(A)
|
Return the absolute value.
|
floor(A)
|
Return the floor of A, the largest integer
value less than or equal to A.
|
fmod(A,B)
|
Return fmod(A, B), as
defined by the platform C library. The intent of the C standard is that
fmod(A, B) be exactly
(mathematically; to infinite precision) equal to A −
n * B for some integer
n such that the result has the same sign as
A and magnitude less than abs(B).
|
frexp(A)[]
|
Return the mantissa and exponent of A as
the pair (m, e).
m is a float and e is an
integer such that A = m * 2 **
e exactly. Use the brackets to specify the index of
the return value to use in the expression evaluation.
|
modf(A)[]
|
Return the fractional and integer parts of
A. Use the brackets to specify the index of the return
value to use in the expression evaluation.
|