simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

cot.js (364B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.cotDocs = void 0;
      7 var cotDocs = {
      8   name: 'cot',
      9   category: 'Trigonometry',
     10   syntax: ['cot(x)'],
     11   description: 'Compute the cotangent of x in radians. Defined as 1/tan(x)',
     12   examples: ['cot(2)', '1 / tan(2)'],
     13   seealso: ['sec', 'csc', 'tan']
     14 };
     15 exports.cotDocs = cotDocs;