|
|
The following calculation options are available:
|
+ - * / |
The Standard Operators |
|
** |
Exponential |
|
() |
Parentheses |
|
+ - |
Positive or Negative Number Indicator |
|
SIN |
ASIN |
|
COS |
ACOS |
|
TAN |
ATAN |
Example of Trigonometric and Hyperbolic functions.
|
SINH |
|
|
COSH |
|
|
TANH |
A=30°
B=SIN(A*<value>)
B=0.5
Note: The inputinput and outputoutput values of Trigonometric functions are expressed in degrees.
|
DEGREE |
Convert from radians to degrees. Example: DEGREE(<value in RADIAN>) |
|
RADIAN |
Convert from degrees to radians. Example: RADIAN(<value in DEGREE>) |
|
SQRT |
Find the square root. Example: SQRT(<value>) ( = √<value>) |
|
INCH |
Multiply by 25.4 (convert inches to millimeters). |
|
PI |
Multiply by 3.141592. Examples: B=PI*<value> ( = 3.141592*<value>) C=PI ( = 3.141592) |
A=20
I=12
B=SQRT ( (10*(SIN(A*0.25)))**2 + (Xpos[I+1])**2 )
|