acoth.js (423B)
1 "use strict"; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 exports.acothDocs = void 0; 7 var acothDocs = { 8 name: 'acoth', 9 category: 'Trigonometry', 10 syntax: ['acoth(x)'], 11 description: 'Calculate the hyperbolic arccotangent of a value, defined as `acoth(x) = (ln((x+1)/x) + ln(x/(x-1))) / 2`.', 12 examples: ['acoth(2)', 'acoth(0.5)'], 13 seealso: ['acsch', 'asech'] 14 }; 15 exports.acothDocs = acothDocs;