jiangchengfeiyi-xiaochengxu/node_modules/mathjs/lib/esm/function/trigonometry/atan.js
2025-01-02 11:13:50 +08:00

42 lines
1.0 KiB
JavaScript

import { factory } from '../../utils/factory.js';
var name = 'atan';
var dependencies = ['typed'];
export var createAtan = /* #__PURE__ */factory(name, dependencies, _ref => {
var {
typed
} = _ref;
/**
* 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();
}
});
});