row.js 250 B

12345678
  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. };