| Line 4: |
Line 4: |
| | * Calci returns the arcsine (inverse sine) of a number. Output is the angle in Radians. | | * Calci returns the arcsine (inverse sine) of a number. Output is the angle in Radians. |
| | *The number can be a single value or any number of values. | | *The number can be a single value or any number of values. |
| − | * To convert arcsine to degrees, multiply it by 180/PI.
| |
| | | | |
| | For example, ASIN(0.5,(-0.2),1) gives the arcsine or inversesine values for each element. | | For example, ASIN(0.5,(-0.2),1) gives the arcsine or inversesine values for each element. |
| Line 17: |
Line 16: |
| | *In ASIN(X) ,x value should be with in -1 & 1. | | *In ASIN(X) ,x value should be with in -1 & 1. |
| | *ASIN function determines the arcsine of the given number. | | *ASIN function determines the arcsine of the given number. |
| − | Here x is in Radians. To convert a degree value to radian, multiply 'x' with PI()/180 or use the Radians function RADIANS(X)
| + | *To find the angle in degrees, multiply the result angle with 180/PI(). |
| | + | *DEGREES function can also be used. |
| | | | |
| − | To find the angle in degrees, multiply the result angle with 180/PI. DEGREES function can also be used.<br/>
| |
| | For example ASIN(-0.8)*180/PI() or DEGREES(ASIN(-0.8))'' gives -53.13010235415598 | | For example ASIN(-0.8)*180/PI() or DEGREES(ASIN(-0.8))'' gives -53.13010235415598 |
| | | | |