concat.js 676 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.concatDocs = void 0;
  6. var concatDocs = {
  7. name: 'concat',
  8. category: 'Matrix',
  9. syntax: ['concat(A, B, C, ...)', 'concat(A, B, C, ..., dim)'],
  10. description: 'Concatenate matrices. By default, the matrices are concatenated by the last dimension. The dimension on which to concatenate can be provided as last argument.',
  11. examples: ['A = [1, 2; 5, 6]', 'B = [3, 4; 7, 8]', 'concat(A, B)', 'concat(A, B, 1)', 'concat(A, B, 2)'],
  12. seealso: ['det', 'diag', 'identity', 'inv', 'ones', 'range', 'size', 'squeeze', 'subset', 'trace', 'transpose', 'zeros']
  13. };
  14. exports.concatDocs = concatDocs;