Documentation moved.This entry is now part of the unified function reference. Open the unified page → API/nerdamer APIFunctionnerdamer.acotsrc/index.ts:755nerdamer.acot(x: ExpressionInput): ExpressionComputes the arccotangent (inverse cotangent) of an expression:`acot(x) = atan(1/x)`. At infinity:`acot(+∞) = 0`,`acot(−∞) = π`.ParametersNameTypeDescriptionxExpressionInputThe input expression.ReturnsExpression — The arccotangent of `x` in radians.Examplesacot(1).text() // "1/4*pi" // Symbolic acot('x').text() // "acot(x)"