52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
import { factory } from '../../utils/factory.js';
|
|
import { deepMap } from '../../utils/collection.js';
|
|
import { cotNumber } from '../../plain/number/index.js';
|
|
var name = 'cot';
|
|
var dependencies = ['typed', 'BigNumber'];
|
|
export var createCot = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
var {
|
|
typed,
|
|
BigNumber: _BigNumber
|
|
} = _ref;
|
|
|
|
/**
|
|
* Calculate the cotangent of a value. Defined as `cot(x) = 1 / tan(x)`.
|
|
*
|
|
* For matrices, the function is evaluated element wise.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.cot(x)
|
|
*
|
|
* Examples:
|
|
*
|
|
* math.cot(2) // returns number -0.45765755436028577
|
|
* 1 / math.tan(2) // returns number -0.45765755436028577
|
|
*
|
|
* See also:
|
|
*
|
|
* tan, sec, csc
|
|
*
|
|
* @param {number | Complex | Unit | Array | Matrix} x Function input
|
|
* @return {number | Complex | Array | Matrix} Cotangent of x
|
|
*/
|
|
return typed(name, {
|
|
number: cotNumber,
|
|
Complex: function Complex(x) {
|
|
return x.cot();
|
|
},
|
|
BigNumber: function BigNumber(x) {
|
|
return new _BigNumber(1).div(x.tan());
|
|
},
|
|
Unit: function Unit(x) {
|
|
if (!x.hasBase(x.constructor.BASE_UNITS.ANGLE)) {
|
|
throw new TypeError('Unit in function cot is no angle');
|
|
}
|
|
|
|
return this(x.value);
|
|
},
|
|
'Array | Matrix': function ArrayMatrix(x) {
|
|
return deepMap(x, this);
|
|
}
|
|
});
|
|
}); |