Difference between revisions of "Documentation/How Tos/Calc: ACOT function"
From Apache OpenOffice Wiki
< Documentation | How Tos
m |
m |
||
| Line 3: | Line 3: | ||
|ShowPrevNext=block | |ShowPrevNext=block | ||
|PrevPage=Documentation/How_Tos/Calc:_ACOS_function | |PrevPage=Documentation/How_Tos/Calc:_ACOS_function | ||
| − | |NextPage=Documentation/How_Tos/Calc: | + | |NextPage=Documentation/How_Tos/Calc:_ASIN_function |
}}__NOTOC__ | }}__NOTOC__ | ||
Latest revision as of 14:21, 31 January 2024
Trigonometric
Hyperbolic
Rounding and remainders
Logarithm/Powers
Bessel functions
Miscellaneous
ACOT
Returns the inverse cotangent (the arc cotangent) of a number.
Syntax:
ACOT(number)
- returns the inverse trigonometric cotangent of number, in other words the angle (in radians) whose cotangent is number. The angle returned is between 0 and PI.
- To return the angle in degrees, use the DEGREES function.
Example:
ACOT(1)
- returns 0.785398163397448 (PI/4 radians).
DEGREES(ACOT(1))
- returns 45. The tangent of 45 degrees is 1.
See Also