53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
import { factory } from '../../utils/factory.js';
|
|
import { deepMap } from '../../utils/collection.js';
|
|
import { atanhNumber } from '../../plain/number/index.js';
|
|
var name = 'atanh';
|
|
var dependencies = ['typed', 'config', 'Complex'];
|
|
export var createAtanh = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
var {
|
|
typed,
|
|
config,
|
|
Complex
|
|
} = _ref;
|
|
|
|
/**
|
|
* Calculate the hyperbolic arctangent of a value,
|
|
* defined as `atanh(x) = ln((1 + x)/(1 - x)) / 2`.
|
|
*
|
|
* For matrices, the function is evaluated element wise.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.atanh(x)
|
|
*
|
|
* Examples:
|
|
*
|
|
* math.atanh(0.5) // returns 0.5493061443340549
|
|
*
|
|
* See also:
|
|
*
|
|
* acosh, asinh
|
|
*
|
|
* @param {number | Complex | Array | Matrix} x Function input
|
|
* @return {number | Complex | Array | Matrix} Hyperbolic arctangent of x
|
|
*/
|
|
return typed(name, {
|
|
number: function number(x) {
|
|
if (x <= 1 && x >= -1 || config.predictable) {
|
|
return atanhNumber(x);
|
|
}
|
|
|
|
return new Complex(x, 0).atanh();
|
|
},
|
|
Complex: function Complex(x) {
|
|
return x.atanh();
|
|
},
|
|
BigNumber: function BigNumber(x) {
|
|
return x.atanh();
|
|
},
|
|
'Array | Matrix': function ArrayMatrix(x) {
|
|
// deep map collection, skip zeros since atanh(0) = 0
|
|
return deepMap(x, this, true);
|
|
}
|
|
});
|
|
}); |