UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif

46 lines (45 loc) 1.19 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createAtan = void 0; var _factory = require("../../utils/factory.js"); var name = 'atan'; var dependencies = ['typed']; var createAtan = exports.createAtan = /* #__PURE__ */(0, _factory.factory)(name, dependencies, function (_ref) { var typed = _ref.typed; /** * Calculate the inverse tangent of a value. * * To avoid confusion with matrix arctangent, this function does not apply * to matrices. * * Syntax: * * math.atan(x) * * Examples: * * math.atan(0.5) // returns number 0.4636476090008061 * math.atan(2) // returns number 1.1071487177940904 * math.atan(math.tan(1.5)) // returns number 1.5 * * See also: * * tan, asin, acos * * @param {number | BigNumber | Complex} x Function input * @return {number | BigNumber | Complex} The arc tangent of x */ return typed('atan', { number: function number(x) { return Math.atan(x); }, Complex: function Complex(x) { return x.atan(); }, BigNumber: function BigNumber(x) { return x.atan(); } }); });