pinv.js 384 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.pinvDocs = void 0;
  6. var pinvDocs = {
  7. name: 'pinv',
  8. category: 'Matrix',
  9. syntax: ['pinv(x)'],
  10. description: 'Calculate the Moore–Penrose inverse of a matrix',
  11. examples: ['pinv([1, 2; 3, 4])', 'pinv([[1, 0], [0, 1], [0, 1]])', 'pinv(4)'],
  12. seealso: ['inv']
  13. };
  14. exports.pinvDocs = pinvDocs;