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
55 lines (47 loc) • 1.36 kB
JavaScript
import { factory } from '../../utils/factory'
import { deepMap } from '../../utils/collection'
import { cotNumber } from '../../plain/number'
const name = 'cot'
const dependencies = ['typed', 'BigNumber']
export const createCot = /* #__PURE__ */ factory(name, dependencies, ({ typed, BigNumber }) => {
/**
* 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
*/
const cot = typed(name, {
number: cotNumber,
Complex: function (x) {
return x.cot()
},
BigNumber: function (x) {
return new BigNumber(1).div(x.tan())
},
Unit: function (x) {
if (!x.hasBase(x.constructor.BASE_UNITS.ANGLE)) {
throw new TypeError('Unit in function cot is no angle')
}
return cot(x.value)
},
'Array | Matrix': function (x) {
return deepMap(x, cot)
}
})
return cot
})