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
56 lines (48 loc) • 1.33 kB
JavaScript
import { factory } from '../../utils/factory'
import { deepMap } from '../../utils/collection'
import { sinhNumber } from '../../plain/number'
const name = 'sinh'
const dependencies = ['typed']
export const createSinh = /* #__PURE__ */ factory(name, dependencies, ({ typed }) => {
/**
* Calculate the hyperbolic sine of a value,
* defined as `sinh(x) = 1/2 * (exp(x) - exp(-x))`.
*
* For matrices, the function is evaluated element wise.
*
* Syntax:
*
* math.sinh(x)
*
* Examples:
*
* math.sinh(0.5) // returns number 0.5210953054937474
*
* See also:
*
* cosh, tanh
*
* @param {number | BigNumber | Complex | Unit | Array | Matrix} x Function input
* @return {number | BigNumber | Complex | Array | Matrix} Hyperbolic sine of x
*/
const sinh = typed(name, {
number: sinhNumber,
Complex: function (x) {
return x.sinh()
},
BigNumber: function (x) {
return x.sinh()
},
Unit: function (x) {
if (!x.hasBase(x.constructor.BASE_UNITS.ANGLE)) {
throw new TypeError('Unit in function sinh is no angle')
}
return sinh(x.value)
},
'Array | Matrix': function (x) {
// deep map collection, skip zeros since sinh(0) = 0
return deepMap(x, sinh, true)
}
})
return sinh
})