Reference Manual
IVC-2D
246
©
SICK AG • Advanced Industrial Sensors • www.sick.com • All rights reserved
Appendix
Symbol
Meaning
Asin(x)
Arcsine, result is in radians
Acos(x)
Arccosine, result is in radians
Atan(x)
Arctangent, result is in radians
Sinh(x)
Hyperbolic sine
Cosh(x)
Hyperbolic cosine
Tanh(x)
Hyperbolic tangent
Exp(x)
Exponential (e
x
)
Log(x)
Natural logarithm (ln)
Log10(x)
Base 10 logarithm
Sqrt(x)
Square root
Floor(x)
Integer part of a decimal value.
For example:
Floor(3.1415)
= 3
Ceil(x)
The smallest integer that is larger than or equal to a
decimal value. For example:
Ceil(3.1415)
= 4
Round(x, decimals)
Rounds off a value to a specified number of decimals
Abs(x)
Absolute value
Deg(x)
Conversion from radians to degrees
Rad(x)
Conversion from degrees to radians
Min(x, y, ...)
Minimum
Max(x, y, ...)
Maximum
Equ(x, y)
Equality
Not
Logical not
&
Bitwise and
|
Bitwise or
<>
Not equal to
=
Equal to
<=
Less than or equal to
>=
Greater than or equal to
!
Logical not
~
Bitwise not
>>
Bitwise shift to left
<<
Bitwise shift right
( )
Parenthesis, used for giving priority to operands
.
Dot. Separates the integer part of a number from the
fractional part
,
Separator, for example
Max(5,7) = 7