|
Assignment Statement Calculator Options
The following calculation options are available:
Arithmetic Operators
+ - * / |
The Standard Operators |
** |
Exponential |
() |
Parentheses |
+ - |
Positive or Negative Number Indicator |
Trigonometric Functions (Angle expressed in Degrees)
SIN |
ASIN |
COS |
ACOS |
TAN |
ATAN |
Example of Trigonometric and Hyperbolic functions.
Hyperbolic Functions
SINH |
|
COSH |
|
TANH |
Example of Trigonometric and Hyperbolic functions
A=30°
B=SIN(A*<value>)
B=0.5
Note: The inputinput and outputoutput values of Trigonometric functions are expressed in degrees.
General Functions
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 sample arithmetic expression might look as follows
A=20
I=12
B=SQRT ( (10*(SIN(A*0.25)))**2 + (Xpos[I+1])**2 )
|