Klicka här för att komma till innehållsförteckningen

Functions

ABS(r)
 


ACOS (rR)
 


ASIN(r)
 


ATAN(r)
 


COS(r) 
 


DEG(r)
 


EXP(r)
 


FAC(r)
 


FRAC(r)
 


INT(r)
 


LN(r)
 


LOG(r)
 


PWR(x;y)
 


RAD(r)
 


RND(r)
 


SGN(r)


SIN(r)
 


SQRT(r)
 


TABLE(ID;r)
 


TAN(r)
 


 

Returns the absolute values
Ex: ABS (-10) --> 10


Returns the angle whose cosine is (r)
Ex: ACOS (1) 0 --> (0 ° C)


Returns the angle whose sine is (r)
Ex: ASIN (1) --> 1.57 (90 ° C)


Returns the angle whose tangent is (r)
Ex: ATAN (1) 0.785 --> (45 ° C)


Returns the cosine of r
Ex: COS (3.14) --> -1


Transforms radians to degrees
Ex: DEG (3.14) --> 180


Calculates the exponential
Example: EXP (4) --> e4 = 54.6


Calculates the factorial
Ex: FAC (4) --> 1 * 2 * 3 * 4 = 24


Returns the fractional part of a floating point
Ex: FRAC (31.232) --> 0.232


Returns the integer part of a floating point --> 31
Example: INT (31.232)


Returns the logarithm of a value greater than zero
Ex: LN (10) --> 2.30 ..


Returns 10 logarithm of a value greater than zero
Ex: LOG (10) --> 1


Returns the power of x to y
Ex: PWR (2; ID1) --> Square of CH1


Transforms degrees to radians
Ex: RAD (180) --> 3.141592653589793238462 ..


Returns a random number between zero and r
Ex: RND (30)


Returns +1 if the number is positive and -1 if it is negative

Returns the sine of r
Example: SIN (3.14) --> 0


Returns the square root of the value
Ex: sqrt (144) --> 12


Returns a transformed value by the Tabler.txt (where r is a number) interpolate between entries.


Returns the tangent of r
Ex: the TAN (π / 4) --> 1.548