simple-squiggle

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

sin.js (402B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.sinDocs = void 0;
      7 var sinDocs = {
      8   name: 'sin',
      9   category: 'Trigonometry',
     10   syntax: ['sin(x)'],
     11   description: 'Compute the sine of x in radians.',
     12   examples: ['sin(2)', 'sin(pi / 4) ^ 2', 'sin(90 deg)', 'sin(30 deg)', 'sin(0.2)^2 + cos(0.2)^2'],
     13   seealso: ['asin', 'cos', 'tan']
     14 };
     15 exports.sinDocs = sinDocs;