simple-squiggle

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

matrixFromRows.js (408B)


      1 export var matrixFromRowsDocs = {
      2   name: 'matrixFromRows',
      3   category: 'Matrix',
      4   syntax: ['math.matrixFromRows(...arr)', 'math.matrixFromRows(row1, row2)', 'math.matrixFromRows(row1, row2, row3)'],
      5   description: 'Create a dense matrix from vectors as individual rows.',
      6   examples: ['matrixFromRows([1, 2, 3], [[4],[5],[6]])'],
      7   seealso: ['matrix', 'matrixFromColumns', 'matrixFromFunction', 'zeros']
      8 };