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 = 'sec'
|
|
const dependencies = ['typed', 'type.BigNumber', 'type.Unit']
|
|
|
|
export const createSec = factory(name, dependencies, ({ typed, type: { BigNumber, Unit } }) => {
|
|
/**
|
|
* Calculate the secant of a value, defined as `sec(x) = 1/cos(x)`.
|
|
*
|
|
* For matrices, the function is evaluated element wise.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.sec(x)
|
|
*
|
|
* Examples:
|
|
*
|
|
* math.sec(2) // returns number -2.4029979617223822
|
|
* 1 / math.cos(2) // returns number -2.4029979617223822
|
|
*
|
|
* See also:
|
|
*
|
|
* cos, csc, cot
|
|
*
|
|
* @param {number | Complex | Unit | Array | Matrix} x Function input
|
|
* @return {number | Complex | Array | Matrix} Secant of x
|
|
*/
|
|
const sec = typed(name, {
|
|
'number': function (x) {
|
|
return 1 / Math.cos(x)
|
|
},
|
|
|
|
'Complex': function (x) {
|
|
return x.sec()
|
|
},
|
|
|
|
'BigNumber': function (x) {
|
|
return new BigNumber(1).div(x.cos())
|
|
},
|
|
|
|
'Unit': function (x) {
|
|
if (!x.hasBase(Unit.BASE_UNITS.ANGLE)) {
|
|
throw new TypeError('Unit in function sec is no angle')
|
|
}
|
|
return sec(x.value)
|
|
},
|
|
|
|
'Array | Matrix': function (x) {
|
|
return deepMap(x, sec)
|
|
}
|
|
})
|
|
|
|
sec.toTex = { 1: `\\sec\\left(\${args[0]}\\right)` }
|
|
|
|
return sec
|
|
})
|