simple-squiggle

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

row.js (376B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.rowDocs = void 0;
      7 var rowDocs = {
      8   name: 'row',
      9   category: 'Matrix',
     10   syntax: ['row(x, index)'],
     11   description: 'Return a row from a matrix or array.',
     12   examples: ['A = [[1, 2], [3, 4]]', 'row(A, 1)', 'row(A, 2)'],
     13   seealso: ['column', 'matrixFromRows']
     14 };
     15 exports.rowDocs = rowDocs;