UNPKG

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

72 lines (61 loc) 1.71 kB
'use strict' const deepMap = require('../../utils/collection/deepMap') function factory (type, config, load, typed) { /** * Calculate the hyperbolic tangent of a value, * defined as `tanh(x) = (exp(2 * x) - 1) / (exp(2 * x) + 1)`. * * For matrices, the function is evaluated element wise. * * Syntax: * * math.tanh(x) * * Examples: * * // tanh(x) = sinh(x) / cosh(x) = 1 / coth(x) * math.tanh(0.5) // returns 0.46211715726000974 * math.sinh(0.5) / math.cosh(0.5) // returns 0.46211715726000974 * 1 / math.coth(0.5) // returns 0.46211715726000974 * * See also: * * sinh, cosh, coth * * @param {number | BigNumber | Complex | Unit | Array | Matrix} x Function input * @return {number | BigNumber | Complex | Array | Matrix} Hyperbolic tangent of x */ const tanh = typed('tanh', { 'number': _tanh, 'Complex': function (x) { return x.tanh() }, 'BigNumber': function (x) { return x.tanh() }, 'Unit': function (x) { if (!x.hasBase(type.Unit.BASE_UNITS.ANGLE)) { throw new TypeError('Unit in function tanh is no angle') } return tanh(x.value) }, 'Array | Matrix': function (x) { // deep map collection, skip zeros since tanh(0) = 0 return deepMap(x, tanh, true) } }) tanh.toTex = { 1: `\\tanh\\left(\${args[0]}\\right)` } return tanh } /** * Calculate the hyperbolic tangent of a number * @param {number} x * @returns {number} * @private */ const _tanh = Math.tanh || function (x) { const e = Math.exp(2 * x) return (e - 1) / (e + 1) } exports.name = 'tanh' exports.factory = factory