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

15 lines
366 B
JavaScript
Raw Normal View History

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