expm.js 324 B

12345678
  1. export var expmDocs = {
  2. name: 'expm',
  3. category: 'Arithmetic',
  4. syntax: ['exp(x)'],
  5. 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.',
  6. examples: ['expm([[0,2],[0,0]])'],
  7. seealso: ['exp']
  8. };