123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.createAcosh = void 0;
- var _factory = require("../../utils/factory.js");
- var _index = require("../../plain/number/index.js");
- var name = 'acosh';
- var dependencies = ['typed', 'config', 'Complex'];
- var createAcosh = /* #__PURE__ */(0, _factory.factory)(name, dependencies, function (_ref) {
- var typed = _ref.typed,
- config = _ref.config,
- Complex = _ref.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 | BigNumber | Complex} x Function input
- * @return {number | BigNumber | Complex} Hyperbolic arccosine of x
- */
- return typed(name, {
- number: function number(x) {
- if (x >= 1 || config.predictable) {
- return (0, _index.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 Complex(x) {
- return x.acosh();
- },
- BigNumber: function BigNumber(x) {
- return x.acosh();
- }
- });
- });
- exports.createAcosh = createAcosh;
|