inv.js 442 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.invDocs = void 0;
  6. var invDocs = {
  7. name: 'inv',
  8. category: 'Matrix',
  9. syntax: ['inv(x)'],
  10. description: 'Calculate the inverse of a matrix',
  11. examples: ['inv([1, 2; 3, 4])', 'inv(4)', '1 / 4'],
  12. seealso: ['concat', 'det', 'diag', 'identity', 'ones', 'range', 'size', 'squeeze', 'subset', 'trace', 'transpose', 'zeros']
  13. };
  14. exports.invDocs = invDocs;