feat:node-modules
This commit is contained in:
42
node_modules/mathjs/lib/esm/function/trigonometry/atan.js
generated
vendored
Normal file
42
node_modules/mathjs/lib/esm/function/trigonometry/atan.js
generated
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
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();
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user