Abs | Math - General |
Declaration:
FUNCTION Abs
( v:REAL ) :REAL ; Description:
Function Abs returns the absolute value of the specified value.
ArcCos | Math - General |
Declaration:
FUNCTION ArcCos
( v:REAL ) :REAL ; Description:
Function ArcCos returns the arccosine (in radians) of the specified value.
ArcSin | Math - General |
Declaration:
FUNCTION ArcSin
( v:REAL ) :REAL ; Description:
Function ArcSin returns the arc sine(in radians) of the specified value.
ArcTan | Math - General |
Declaration:
FUNCTION ArcTan
( v:REAL ) :REAL ; Description:
Function ArcTan returns the arc tangent(in radians) of the specified value.
Cos | Math - General |
Declaration:
FUNCTION Cos
( v:REAL ) :REAL ; Description:
Function Cos returns the cosine of the specified value. The base value is assumed to represent an angle in radians.
Deg2Rad | Math - General |
Declaration:
FUNCTION Deg2Rad
( degreeValue:REAL ) :REAL ; Description:
Function Deg2Rad converts the specified value(in degrees) to radians.
Exp | Math - General |
Declaration:
FUNCTION Exp
( v:REAL ) :REAL ; Description:
Function Exp returns the value of e to the x, where e is the base of the natural logarithms and x is the specified value.
Ln | Math - General |
Declaration:
FUNCTION Ln
( v:REAL ) :REAL ; Description:
Function Ln returns the natural logarithm of the specified value.
Rad2Deg | Math - General |
Declaration:
FUNCTION Rad2Deg
( radianValue:REAL ) :REAL ; Description:
Function Rad2Deg converts the specified value (in radians) to degrees.
Round | Math - General |
Declaration:
FUNCTION Round
( v:REAL ) :LONGINT ; Description:
Function Round converts the specified REAL value to a LONGINT value. The LONGINT result is the value rounded to the nearest whole number.
Sin | Math - General |
Declaration:
FUNCTION Sin
( v:REAL ) :REAL ; Description:
Function Sin returns the sine of the specified value. The base value is assumed to represent an angle in radians.
Sqr | Math - General |
Declaration:
FUNCTION Sqr
( v:REAL ) :REAL ; Description:
Function Sqr returns the square of the specified value.
Sqrt | Math - General |
Declaration:
FUNCTION Sqrt
( v:REAL ) :REAL ; Description:
Function Sqrt returns the square root of the specified value.
Tan | Math - General |
Declaration:
FUNCTION Tan
( v:REAL ) :REAL ; Description:
Function Tan returns the tangent of the specified value.
Trunc | Math - General |
Declaration:
FUNCTION Trunc
( v:REAL ) :LONGINT ; Description:
Function Trunc converts the specified REAL value to a LONGINT value. The LONGINT result is the value rounded to the largest whole number between 0 and the value.