simple-squiggle

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

conj.js (428B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.conjDocs = void 0;
      7 var conjDocs = {
      8   name: 'conj',
      9   category: 'Complex',
     10   syntax: ['conj(x)'],
     11   description: 'Compute the complex conjugate of a complex value. If x = a+bi, the complex conjugate is a-bi.',
     12   examples: ['conj(2 + 3i)', 'conj(2 - 3i)', 'conj(-5.2i)'],
     13   seealso: ['re', 'im', 'abs', 'arg']
     14 };
     15 exports.conjDocs = conjDocs;