simple-squiggle

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

asin.js (368B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.asinDocs = void 0;
      7 var asinDocs = {
      8   name: 'asin',
      9   category: 'Trigonometry',
     10   syntax: ['asin(x)'],
     11   description: 'Compute the inverse sine of a value in radians.',
     12   examples: ['asin(0.5)', 'asin(sin(0.5))'],
     13   seealso: ['sin', 'acos', 'atan']
     14 };
     15 exports.asinDocs = asinDocs;