mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
60 lines
1.3 KiB
JavaScript
60 lines
1.3 KiB
JavaScript
'use strict'
|
|
|
|
import { factory } from '../../utils/factory'
|
|
import { deepMap } from '../../utils/collection'
|
|
|
|
const name = 'csc'
|
|
const dependencies = ['typed', 'type.BigNumber', 'type.Unit']
|
|
|
|
export const createCsc = factory(name, dependencies, ({ typed, type: { BigNumber, Unit } }) => {
|
|
/**
|
|
* Calculate the cosecant of a value, defined as `csc(x) = 1/sin(x)`.
|
|
*
|
|
* For matrices, the function is evaluated element wise.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.csc(x)
|
|
*
|
|
* Examples:
|
|
*
|
|
* math.csc(2) // returns number 1.099750170294617
|
|
* 1 / math.sin(2) // returns number 1.099750170294617
|
|
*
|
|
* See also:
|
|
*
|
|
* sin, sec, cot
|
|
*
|
|
* @param {number | Complex | Unit | Array | Matrix} x Function input
|
|
* @return {number | Complex | Array | Matrix} Cosecant of x
|
|
*/
|
|
const csc = typed(name, {
|
|
'number': function (x) {
|
|
return 1 / Math.sin(x)
|
|
},
|
|
|
|
'Complex': function (x) {
|
|
return x.csc()
|
|
},
|
|
|
|
'BigNumber': function (x) {
|
|
return new BigNumber(1).div(x.sin())
|
|
},
|
|
|
|
'Unit': function (x) {
|
|
if (!x.hasBase(Unit.BASE_UNITS.ANGLE)) {
|
|
throw new TypeError('Unit in function csc is no angle')
|
|
}
|
|
return csc(x.value)
|
|
},
|
|
|
|
'Array | Matrix': function (x) {
|
|
return deepMap(x, csc)
|
|
}
|
|
})
|
|
|
|
csc.toTex = { 1: `\\csc\\left(\${args[0]}\\right)` }
|
|
|
|
return csc
|
|
})
|