Arithmetic Operators and Functions
| [Previous] [Main] [Next] |
Abs(X: Double): Double | Returns the absolute value of the argument, X.
|
ArcTan(X: Double): Double | Returns the arctangent of a given Double X.
|
Cos(X: Double): Double | Returns the cosine of the angle X, in radians.
|
Exp(X: Double): Double | Returns the value of e raised to the power of X, where e is the base of the natural logarithms.
|
Frac(X: Double): Double | Returns the fractional part of the argument X.
|
Int(X: Double): Double | Returns the integer part of X, that is, X rounded toward zero.
|
Log(X: Double): Double | Returns the natural log of a real expression.
|
Round(X: Double): Double | Returns the value of X rounded to the nearest whole Double.
|
Sin(X: Double): Double | Returns the sine of the angle in radians.
|
Sqrt(X: Double): Double | Returns the square root of X.
|