simple-squiggle/node_modules/mathjs/lib/cjs/function/trigonometry/asinh.js

54 lines
1.3 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createAsinh = void 0;
var _factory = require("../../utils/factory.js");
var _collection = require("../../utils/collection.js");
var _index = require("../../plain/number/index.js");
var name = 'asinh';
var dependencies = ['typed'];
var createAsinh = /* #__PURE__ */(0, _factory.factory)(name, dependencies, function (_ref) {
var typed = _ref.typed;
/**
* Calculate the hyperbolic arcsine of a value,
* defined as `asinh(x) = ln(x + sqrt(x^2 + 1))`.
*
* For matrices, the function is evaluated element wise.
*
* Syntax:
*
* math.asinh(x)
*
* Examples:
*
* math.asinh(0.5) // returns 0.48121182505960347
*
* See also:
*
* acosh, atanh
*
* @param {number | Complex | Array | Matrix} x Function input
* @return {number | Complex | Array | Matrix} Hyperbolic arcsine of x
*/
return typed('asinh', {
number: _index.asinhNumber,
Complex: function Complex(x) {
return x.asinh();
},
BigNumber: function BigNumber(x) {
return x.asinh();
},
'Array | Matrix': function ArrayMatrix(x) {
// deep map collection, skip zeros since asinh(0) = 0
return (0, _collection.deepMap)(x, this, true);
}
});
});
exports.createAsinh = createAsinh;