simple-squiggle

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

row.js (250B)


      1 export var rowDocs = {
      2   name: 'row',
      3   category: 'Matrix',
      4   syntax: ['row(x, index)'],
      5   description: 'Return a row from a matrix or array.',
      6   examples: ['A = [[1, 2], [3, 4]]', 'row(A, 1)', 'row(A, 2)'],
      7   seealso: ['column', 'matrixFromRows']
      8 };