Numerical Functions - JUMO LOGOSCREEN 601 Manual

Paperless recorder, st editor
Hide thumbs Also See for LOGOSCREEN 601:
Table of Contents

Advertisement

8 Functions
8.3

Numerical functions

Admissible data types
Argument: REAL
Result: REAL
ABS (IN)
Returns the absolute value of IN.
Example:
IN := -2.3;
OUT := ABS(IN); (* OUT = 2.3 *)
SQRT (IN)
Returns the square root of IN.
If IN is negative, the error value 5.0E+37 is returned.
Example:
IN := 4.0;
OUT := SQRT(IN); (* OUT = 2.0 *)
LN (IN)
Returns the natural logarithm of IN.
Example:
IN := 2.718282;
OUT := LN(IN);
(* 2.718282 = number e (rounded); OUT = 1.0 (rounded) *)
LOG (IN)
Returns the base 10 logarithm of IN.
Example:
IN := 100.0;
OUT := LOG(IN); (* OUT = 2.0 *)
EXP (IN)
Returns the natural exponential function of IN.
Example:
IN := 2.0;
OUT := EXP(IN); (* OUT = 7.389056 *)
38

Hide quick links:

Advertisement

Table of Contents
loading

This manual is also suitable for:

Logoscreen 700706521706530

Table of Contents