UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif

55 lines (51 loc) 1.31 kB
'use strict'; var deepMap = require('../../utils/collection/deepMap'); function factory(type, config, load, typed) { /** * 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 */ var csc = typed('csc', { 'number': function number(x) { return 1 / Math.sin(x); }, 'Complex': function Complex(x) { return x.csc(); }, 'BigNumber': function BigNumber(x) { return new type.BigNumber(1).div(x.sin()); }, 'Unit': function Unit(x) { if (!x.hasBase(type.Unit.BASE_UNITS.ANGLE)) { throw new TypeError('Unit in function csc is no angle'); } return csc(x.value); }, 'Array | Matrix': function ArrayMatrix(x) { return deepMap(x, csc); } }); csc.toTex = { 1: "\\csc\\left(${args[0]}\\right)" }; return csc; } exports.name = 'csc'; exports.factory = factory;