simple-squiggle

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

inv.js (442B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.invDocs = void 0;
      7 var invDocs = {
      8   name: 'inv',
      9   category: 'Matrix',
     10   syntax: ['inv(x)'],
     11   description: 'Calculate the inverse of a matrix',
     12   examples: ['inv([1, 2; 3, 4])', 'inv(4)', '1 / 4'],
     13   seealso: ['concat', 'det', 'diag', 'identity', 'ones', 'range', 'size', 'squeeze', 'subset', 'trace', 'transpose', 'zeros']
     14 };
     15 exports.invDocs = invDocs;