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

69 lines (58 loc) 1.55 kB
'use strict'; var deepMap = require('../../utils/collection/deepMap'); function factory (type, config, load, typed) { /** * Calculate the hyperbolic secant of a value, * defined as `sech(x) = 1 / cosh(x)`. * * For matrices, the function is evaluated element wise. * * Syntax: * * math.sech(x) * * Examples: * * // sech(x) = 1/ cosh(x) * math.sech(0.5); // returns 0.886818883970074 * 1 / math.cosh(0.5); // returns 0.886818883970074 * * See also: * * cosh, csch, coth * * @param {number | Complex | Unit | Array | Matrix} x Function input * @return {number | Complex | Array | Matrix} Hyperbolic secant of x */ var sech = typed('sech', { 'number': _sech, 'Complex': function (x) { return x.sech(); }, 'BigNumber': function (x) { return new type.BigNumber(1).div(x.cosh()); }, 'Unit': function (x) { if (!x.hasBase(type.Unit.BASE_UNITS.ANGLE)) { throw new TypeError ('Unit in function sech is no angle'); } return sech(x.value); }, 'Array | Matrix': function (x) { return deepMap(x, sech); } }); sech.toTex = {1: '\\mathrm{sech}\\left(${args[0]}\\right)'}; return sech; } /** * Calculate the hyperbolic secant of a number * @param {number} x * @returns {number} * @private */ function _sech(x) { return 2 / (Math.exp(x) + Math.exp(-x)); } exports.name = 'sech'; exports.factory = factory;