simple-squiggle/node_modules/mathjs/lib/cjs/expression/embeddedDocs/function/trigonometry/csch.js

15 lines
386 B
JavaScript
Raw Normal View History

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.cschDocs = void 0;
var cschDocs = {
name: 'csch',
category: 'Trigonometry',
syntax: ['csch(x)'],
description: 'Compute the hyperbolic cosecant of x in radians. Defined as 1/sinh(x)',
examples: ['csch(2)', '1 / sinh(2)'],
seealso: ['sech', 'coth', 'sinh']
};
exports.cschDocs = cschDocs;