feat:node-modules
This commit is contained in:
41
node_modules/mathjs/lib/esm/function/trigonometry/acsch.js
generated
vendored
Normal file
41
node_modules/mathjs/lib/esm/function/trigonometry/acsch.js
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
import { factory } from '../../utils/factory.js';
|
||||
import { acschNumber } from '../../plain/number/index.js';
|
||||
var name = 'acsch';
|
||||
var dependencies = ['typed', 'BigNumber'];
|
||||
export var createAcsch = /* #__PURE__ */factory(name, dependencies, _ref => {
|
||||
var {
|
||||
typed,
|
||||
BigNumber: _BigNumber
|
||||
} = _ref;
|
||||
/**
|
||||
* Calculate the inverse hyperbolic cosecant of a value,
|
||||
* defined as `acsch(x) = asinh(1/x) = ln(1/x + sqrt(1/x^2 + 1))`.
|
||||
*
|
||||
* To avoid confusion with the matrix inverse hyperbolic cosecant, this function
|
||||
* does not apply to matrices.
|
||||
*
|
||||
* Syntax:
|
||||
*
|
||||
* math.acsch(x)
|
||||
*
|
||||
* Examples:
|
||||
*
|
||||
* math.acsch(0.5) // returns 1.4436354751788103
|
||||
*
|
||||
* See also:
|
||||
*
|
||||
* asech, acoth
|
||||
*
|
||||
* @param {number | BigNumber | Complex} x Function input
|
||||
* @return {number | BigNumber | Complex} Hyperbolic arccosecant of x
|
||||
*/
|
||||
return typed(name, {
|
||||
number: acschNumber,
|
||||
Complex: function Complex(x) {
|
||||
return x.acsch();
|
||||
},
|
||||
BigNumber: function BigNumber(x) {
|
||||
return new _BigNumber(1).div(x).asinh();
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user