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
54 lines (48 loc) • 1.31 kB
JavaScript
import { factory } from '../../utils/factory'
import { deepMap } from '../../utils/collection'
import { acoshNumber } from '../../plain/number'
const name = 'acosh'
const dependencies = ['typed', 'config', 'Complex']
export const createAcosh = /* #__PURE__ */ factory(name, dependencies, ({ typed, config, Complex }) => {
/**
* Calculate the hyperbolic arccos of a value,
* defined as `acosh(x) = ln(sqrt(x^2 - 1) + x)`.
*
* For matrices, the function is evaluated element wise.
*
* Syntax:
*
* math.acosh(x)
*
* Examples:
*
* math.acosh(1.5) // returns 0.9624236501192069
*
* See also:
*
* cosh, asinh, atanh
*
* @param {number | Complex | Unit | Array | Matrix} x Function input
* @return {number | Complex | Array | Matrix} Hyperbolic arccosine of x
*/
return typed(name, {
number: function (x) {
if (x >= 1 || config.predictable) {
return acoshNumber(x)
}
if (x <= -1) {
return new Complex(Math.log(Math.sqrt(x * x - 1) - x), Math.PI)
}
return new Complex(x, 0).acosh()
},
Complex: function (x) {
return x.acosh()
},
BigNumber: function (x) {
return x.acosh()
},
'Array | Matrix': function (x) {
return deepMap(x, this)
}
})
})