52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
import { factory } from '../../utils/factory.js';
|
|
import { deepMap } from '../../utils/collection.js';
|
|
import { cscNumber } from '../../plain/number/index.js';
|
|
var name = 'csc';
|
|
var dependencies = ['typed', 'BigNumber'];
|
|
export var createCsc = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
var {
|
|
typed,
|
|
BigNumber: _BigNumber
|
|
} = _ref;
|
|
|
|
/**
|
|
* Calculate the cosecant of a value, defined as `csc(x) = 1/sin(x)`.
|
|
*
|
|
* For matrices, the function is evaluated element wise.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.csc(x)
|
|
*
|
|
* Examples:
|
|
*
|
|
* math.csc(2) // returns number 1.099750170294617
|
|
* 1 / math.sin(2) // returns number 1.099750170294617
|
|
*
|
|
* See also:
|
|
*
|
|
* sin, sec, cot
|
|
*
|
|
* @param {number | Complex | Unit | Array | Matrix} x Function input
|
|
* @return {number | Complex | Array | Matrix} Cosecant of x
|
|
*/
|
|
return typed(name, {
|
|
number: cscNumber,
|
|
Complex: function Complex(x) {
|
|
return x.csc();
|
|
},
|
|
BigNumber: function BigNumber(x) {
|
|
return new _BigNumber(1).div(x.sin());
|
|
},
|
|
Unit: function Unit(x) {
|
|
if (!x.hasBase(x.constructor.BASE_UNITS.ANGLE)) {
|
|
throw new TypeError('Unit in function csc is no angle');
|
|
}
|
|
|
|
return this(x.value);
|
|
},
|
|
'Array | Matrix': function ArrayMatrix(x) {
|
|
return deepMap(x, this);
|
|
}
|
|
});
|
|
}); |