expm.js 453 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.expmDocs = void 0;
  6. var expmDocs = {
  7. name: 'expm',
  8. category: 'Arithmetic',
  9. syntax: ['exp(x)'],
  10. description: 'Compute the matrix exponential, expm(A) = e^A. ' + 'The matrix must be square. ' + 'Not to be confused with exp(a), which performs element-wise exponentiation.',
  11. examples: ['expm([[0,2],[0,0]])'],
  12. seealso: ['exp']
  13. };
  14. exports.expmDocs = expmDocs;