simple-squiggle

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

matrix.js (597B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.matrixDocs = void 0;
      7 var matrixDocs = {
      8   name: 'matrix',
      9   category: 'Construction',
     10   syntax: ['[]', '[a1, b1, ...; a2, b2, ...]', 'matrix()', 'matrix("dense")', 'matrix([...])'],
     11   description: 'Create a matrix.',
     12   examples: ['[]', '[1, 2, 3]', '[1, 2, 3; 4, 5, 6]', 'matrix()', 'matrix([3, 4])', 'matrix([3, 4; 5, 6], "sparse")', 'matrix([3, 4; 5, 6], "sparse", "number")'],
     13   seealso: ['bignumber', 'boolean', 'complex', 'index', 'number', 'string', 'unit', 'sparse']
     14 };
     15 exports.matrixDocs = matrixDocs;